module StandardExceptions::ExceptionInterface
Attributes
inner[W]
status[RW]
Public Class Methods
included(aClass)
click to toggle source
# File lib/standard_exceptions.rb, line 7 def self.included(aClass) aClass.send :extend, ClassMethods end
Public Instance Methods
human_name()
click to toggle source
# File lib/standard_exceptions.rb, line 27 def human_name self.class.human_name end
inner()
click to toggle source
# File lib/standard_exceptions.rb, line 23 def inner @inner || self.cause end