class Aeternitas::Errors::SourceDataExists

Raised when a source data already exists. @!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 28
def initialize(fingerprint)
  @fingerprint = fingerprint
  super("The source entry with fingerprint '#{fingerprint}' already exists!")
end