class AIXM::Error

Extension of StandardError which contains the subject of the error.

@abstract

Attributes

subject[R]

Public Class Methods

new(message, subject=nil) click to toggle source
Calls superclass method
   # File lib/aixm/errors.rb
 9 def initialize(message, subject=nil)
10   @subject = subject
11   super message
12 end