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
331 332 333 |
# File 'zona.rb', line 331 def initialize(=nil) = end |
Instance Attribute Details
- (Object) message (readonly)
Returns the value of attribute message
328 329 330 |
# File 'zona.rb', line 328 def end |
Instance Method Details
- (String) to_s
Error message description
336 337 338 |
# File 'zona.rb', line 336 def to_s() end |