class Aeternitas::Errors::SourceDataNotFound
Raised when a source entry does not exist. @!attribute [r] fingerprint
the sources fingerprint
Attributes
fingerprint[R]
Public Class Methods
new(fingerprint)
click to toggle source
Create a new Exception @param [String] fingerprint the sources fingerprint
Calls superclass method
# File lib/aeternitas/errors.rb, line 42 def initialize(fingerprint) @fingerprint = fingerprint super("The source entry with fingerprint '#{fingerprint}' does not exist!") end