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.



33
34
35
36
# File 'lib/xamplr/exceptions.rb', line 33

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

Instance Attribute Details

#msgObject (readonly)

Returns the value of attribute msg.



31
32
33
# File 'lib/xamplr/exceptions.rb', line 31

def msg
  @msg
end

#nameObject (readonly)

Returns the value of attribute name.



31
32
33
# File 'lib/xamplr/exceptions.rb', line 31

def name
  @name
end

Instance Method Details

#messageObject



38
39
40
# File 'lib/xamplr/exceptions.rb', line 38

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