Exception: CFManifests::UnknownSymbol

Inherits:
CF::UserFriendlyError show all
Defined in:
lib/manifests/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(sym) ⇒ UnknownSymbol

Returns a new instance of UnknownSymbol.



27
28
29
# File 'lib/manifests/errors.rb', line 27

def initialize(sym)
  @sym = sym
end

Instance Method Details

#to_sObject



31
32
33
# File 'lib/manifests/errors.rb', line 31

def to_s
  "Undefined symbol in manifest: '#@sym'"
end