Class: OpenNebula::Error

Inherits:
Object
  • Object
show all
Defined in:
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

ESUCCESS =
0x0000
EAUTHENTICATION =
0x0100
EAUTHORIZATION =
0x0200
ENO_EXISTS =
0x0400
EACTION =
0x0800
EXML_RPC_API =
0x1000
EINTERNAL =
0x2000
ENOTDEFINED =
0x1111

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (Error) initialize(message = nil, errno = 0x1111)

message Description of the error errno OpenNebula code error



75
76
77
78
# File 'OpenNebula.rb', line 75

def initialize(message=nil, errno=0x1111)
    @message = message
    @errno   = errno
end

Instance Attribute Details

- (Object) errno (readonly)

Returns the value of attribute errno



71
72
73
# File 'OpenNebula.rb', line 71

def errno
  @errno
end

- (Object) message (readonly)

Returns the value of attribute message



71
72
73
# File 'OpenNebula.rb', line 71

def message
  @message
end

Instance Method Details

- (Object) to_str



80
81
82
# File 'OpenNebula.rb', line 80

def to_str()
    @message
end