Exception: Rbnotes::UnknownKeywordError

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

Overview

An eeror raised when an unknown keyword was specified as a timestamp string pattern.

Instance Method Summary collapse

Constructor Details

#initialize(keyword) ⇒ UnknownKeywordError

Returns a new instance of UnknownKeywordError.



67
68
69
# File 'lib/rbnotes/error.rb', line 67

def initialize(keyword)
  super(ErrMsg::UNKNOWN_KEYWORD % keyword)
end