Exception: Rbnotes::InvalidTimestampPatternError

Inherits:
Error
  • Object
show all
Defined in:
lib/rbnotes/error.rb

Overview

An error raised when an invalid timestamp pattern was specified.

Instance Method Summary collapse

Constructor Details

#initialize(pattern) ⇒ InvalidTimestampPatternError

Returns a new instance of InvalidTimestampPatternError.



76
77
78
# File 'lib/rbnotes/error.rb', line 76

def initialize(pattern)
  super(ErrMsg::INVALID_TIMESTAMP_PATTERN % pattern)
end