Class: CloudClient::Error
- Inherits:
-
Object
- Object
- CloudClient::Error
- Defined in:
- lib/cloud/CloudClient.rb
Overview
######################################################################### The Error Class represents a generic error in the Cloud Client library. It contains a readable representation of the error. #########################################################################
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(message = nil, code = "500") ⇒ Error
constructor
message
a description of the error. - #to_s ⇒ Object
Constructor Details
#initialize(message = nil, code = "500") ⇒ Error
message
a description of the error
177 178 179 180 |
# File 'lib/cloud/CloudClient.rb', line 177 def initialize(=nil, code="500") @message= @code=code end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
174 175 176 |
# File 'lib/cloud/CloudClient.rb', line 174 def code @code end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
173 174 175 |
# File 'lib/cloud/CloudClient.rb', line 173 def @message end |
Instance Method Details
#to_s ⇒ Object
182 183 184 |
# File 'lib/cloud/CloudClient.rb', line 182 def to_s() @message end |