class Place::APIException

Attributes

error_type[R]
status_code[R]
error_details[RW]

Public Class Methods

descendants() click to toggle source
# File lib/place/exceptions.rb, line 12
def self.descendants
        ObjectSpace.each_object(Class).select { |klass| klass < self }
end
new( msg = nil, error_details = nil ) click to toggle source
Calls superclass method
# File lib/place/exceptions.rb, line 7
def initialize( msg = nil, error_details = nil )
        super(msg)
        @error_details = error_details
end