class Rbnotes::InvalidTimestampPatternAsDateError

An error raised when the specified pattern cannot be converted into a date.

Public Class Methods

new(pattern) click to toggle source
Calls superclass method
# File lib/rbnotes/error.rb, line 114
def initialize(pattern)
  super(ErrMsg::INVALID_TIMESTAMP_PATTERN_AS_DATE % pattern)
end