
The Error Class represents a generic error in the OpenNebula library. It contains a readable representation of the error. Any function in the OpenNebula module will return an Error object in case of error.
Attributes
message | [R] |
Public class methods
new
(message=nil)
message a description of the error
[show source]
# File OpenNebula.rb, line 54 54: def initialize(message=nil) 55: @message=message 56: end