class Leather::Satchel::Error::UnknownIdentifierError

Error raised if the requested identifier is not known by the container

Public Class Methods

new(identifier) click to toggle source

UnknownIdentifierError constructor @param identifier [String|Symbol]

Calls superclass method
# File lib/leather/satchel/error/unknown_identifier_error.rb, line 10
def initialize(identifier)
  message = "Unknown service identifier #{identifier}"
  super(message)
end