Exception: Arrow::Exception

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

Overview

Base exception class

Constant Summary

Message =
"Arrow framework error"

Instance Method Summary

Constructor Details

- (Exception) initialize(message = nil)

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