Exception: XS::XSError
- Inherits:
-
StandardError
- Object
- StandardError
- XS::XSError
- Defined in:
- lib/ffi-rxs/exceptions.rb
Overview
General Crossroads error class
Direct Known Subclasses
Instance Attribute Summary collapse
-
#error_code ⇒ Object
readonly
Returns the value of attribute error_code.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#result_code ⇒ Object
readonly
Returns the value of attribute result_code.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
Instance Method Summary collapse
-
#initialize(source, result_code, error_code, message) ⇒ XSError
constructor
A new instance of XSError.
Constructor Details
#initialize(source, result_code, error_code, message) ⇒ XSError
Returns a new instance of XSError.
8 9 10 11 12 13 14 15 |
# File 'lib/ffi-rxs/exceptions.rb', line 8 def initialize source, result_code, error_code, @source = source @result_code = result_code @error_code = error_code @message = "source [#{source}], msg [#{}], " + "error code [#{error_code}],rc [#{result_code}]" super end |
Instance Attribute Details
#error_code ⇒ Object (readonly)
Returns the value of attribute error_code.
6 7 8 |
# File 'lib/ffi-rxs/exceptions.rb', line 6 def error_code @error_code end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
6 7 8 |
# File 'lib/ffi-rxs/exceptions.rb', line 6 def @message end |
#result_code ⇒ Object (readonly)
Returns the value of attribute result_code.
6 7 8 |
# File 'lib/ffi-rxs/exceptions.rb', line 6 def result_code @result_code end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
6 7 8 |
# File 'lib/ffi-rxs/exceptions.rb', line 6 def source @source end |