class Textrepo::DuplicateTimestampError

An error raised if the specified timestamp has already exist in the repository.

Public Class Methods

new(timestamp) click to toggle source
Calls superclass method
# File lib/textrepo/error.rb, line 60
def initialize(timestamp)
  super(ErrMsg::DUPLICATE_TIMESTAMP % timestamp)
end