class Lightstreamer::Errors::MetadataAdapterError
This error is raised when a error defined by a metadata adapter is raised.
Attributes
adapter_error_code[R]
The error code from the metadata adapter.
@return [Fixnum]
adapter_error_message[R]
The error message from the metadata adapter.
@return [String]
Public Class Methods
new(message, code)
click to toggle source
Initializes this metadata adapter error with the specified error message and error code.
@param [String] message The error message. @param [Fixnum] code The error code.
Calls superclass method
# File lib/lightstreamer/errors.rb, line 130 def initialize(message, code) @adapter_error_message = message @adapter_error_code = code super message end