Exception: Arrow::Exception

Inherits:
StandardError
  • Object
show all
Defined in:
lib/arrow/exceptions.rb

Overview

Base exception class

Constant Summary collapse

Message =
"Arrow framework error"

Instance Method Summary collapse

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( message=nil )
	message ||= self.class.const_get( "Message" )
	super( message )
end