Exception: Arrow::Exception
- Inherits:
-
StandardError
- Object
- StandardError
- Arrow::Exception
- Defined in:
- lib/arrow/exceptions.rb
Overview
Base exception class
Constant Summary collapse
- Message =
"Arrow framework error"
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ Exception
constructor
A new instance of Exception.
Constructor Details
#initialize(message = nil) ⇒ Exception
Returns a new instance of Exception.
8 9 10 11 |
# File 'lib/arrow/exceptions.rb', line 8 def initialize( =nil ) ||= self.class.const_get( "Message" ) super( ) end |