Exception: Wix::WixError
- Inherits:
-
StandardError
- Object
- StandardError
- Wix::WixError
- Defined in:
- lib/wix/errors/wix_error.rb
Instance Attribute Summary collapse
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ WixError
constructor
A new instance of WixError.
- #to_s ⇒ Object
Constructor Details
#initialize(message = nil) ⇒ WixError
Returns a new instance of WixError.
5 6 7 |
# File 'lib/wix/errors/wix_error.rb', line 5 def initialize(=nil) @message = end |
Instance Attribute Details
#message ⇒ Object (readonly)
Returns the value of attribute message.
3 4 5 |
# File 'lib/wix/errors/wix_error.rb', line 3 def @message end |
Instance Method Details
#to_s ⇒ Object
9 10 11 |
# File 'lib/wix/errors/wix_error.rb', line 9 def to_s "#{@message}" end |