Exception: Xampl::XamplException

Inherits:
Exception
  • Object
show all
Defined in:
lib/xamplr/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, message = nil) ⇒ XamplException

Returns a new instance of XamplException.



44
45
46
47
# File 'lib/xamplr/exceptions.rb', line 44

def initialize(name, message=nil)
  @name = name
  @msg = message ? message : ""
end

Instance Attribute Details

#msgObject (readonly)

Returns the value of attribute msg.



42
43
44
# File 'lib/xamplr/exceptions.rb', line 42

def msg
  @msg
end

#nameObject (readonly)

Returns the value of attribute name.



42
43
44
# File 'lib/xamplr/exceptions.rb', line 42

def name
  @name
end

Instance Method Details

#messageObject



49
50
51
# File 'lib/xamplr/exceptions.rb', line 49

def message
  "XamplException #{@name} #{@msg}"
end