class Xeme::Exception

Xeme::Exception is a subclass of StandardError and can be used exactly like a StandardError object. The one addition to StandardError is the `xeme` property which holds a Xeme object. Don't instantiate this class directly; use Xeme#new_exception.

Attributes

xeme[R]

Public Class Methods

new(error_code, xeme) click to toggle source
Calls superclass method
# File lib/xeme.rb, line 654
def initialize(error_code, xeme)
        @error_code = error_code
        @xeme = xeme
        super @error_code
end