Class: OpenNebula::Error
- Inherits:
-
Object
- Object
- OpenNebula::Error
- Defined in:
- lib/OpenNebula.rb
Overview
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.
Constant Summary collapse
- ESUCCESS =
0x0000
- EAUTHENTICATION =
0x0100
- EAUTHORIZATION =
0x0200
- ENO_EXISTS =
0x0400
- EACTION =
0x0800
- EXML_RPC_API =
0x1000
- EINTERNAL =
0x2000
- ENOTDEFINED =
0x1111
Instance Attribute Summary collapse
-
#errno ⇒ Object
readonly
Returns the value of attribute errno.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(message = nil, errno = 0x1111) ⇒ Error
constructor
message
Description of the errorerrno
OpenNebula code error. - #to_str ⇒ Object
Constructor Details
#initialize(message = nil, errno = 0x1111) ⇒ Error
message
Description of the error errno
OpenNebula code error
70 71 72 73 |
# File 'lib/OpenNebula.rb', line 70 def initialize(=nil, errno=0x1111) @message = @errno = errno end |
Instance Attribute Details
#errno ⇒ Object (readonly)
Returns the value of attribute errno.
66 67 68 |
# File 'lib/OpenNebula.rb', line 66 def errno @errno end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
66 67 68 |
# File 'lib/OpenNebula.rb', line 66 def @message end |
Instance Method Details
#to_str ⇒ Object
75 76 77 |
# File 'lib/OpenNebula.rb', line 75 def to_str() @message end |