
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 38 38: def initialize(message=nil) 39: @message=message 40: end