class CFManifests::UnknownSymbol

Public Class Methods

new(sym) click to toggle source
# File lib/manifests/errors.rb, line 27
def initialize(sym)
  @sym = sym
end

Public Instance Methods

to_s() click to toggle source
# File lib/manifests/errors.rb, line 31
def to_s
  "Undefined symbol in manifest: '#@sym'"
end