Exception: Rbnotes::MissingTimestampError

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

Overview

An error raised if a given timestamp was not found in the repository.

Instance Method Summary collapse

Constructor Details

#initialize(timestamp) ⇒ MissingTimestampError

Returns a new instance of MissingTimestampError.



37
38
39
# File 'lib/rbnotes/error.rb', line 37

def initialize(timestamp)
  super(ErrMsg::MISSING_TIMESTAMP % timestamp)
end