Class: Zona::Error
- Inherits:
-
Object
- Object
- Zona::Error
- Defined in:
- zona.rb
Overview
The Error Class represents a generic error in the Zona library. It contains a readable representation of the error.
Instance Attribute Summary (collapse)
-
- (Object) message
readonly
Returns the value of attribute message.
Instance Method Summary (collapse)
-
- (Error) initialize(message = nil)
constructor
A new instance of Error.
-
- (String) to_s
Error message description.
Constructor Details
- (Error) initialize(message = nil)
A new instance of Error
339 340 341 |
# File 'zona.rb', line 339 def initialize(=nil) = end |
Instance Attribute Details
- (Object) message (readonly)
Returns the value of attribute message
336 337 338 |
# File 'zona.rb', line 336 def end |
Instance Method Details
- (String) to_s
Error message description
344 345 346 |
# File 'zona.rb', line 344 def to_s() end |