Class: Rubyfb::FireRubyException

Inherits:
Object
  • Object
show all
Defined in:
lib/src.rb

Overview

This class provides the exception type used by the FireRuby library.

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ FireRubyException

This is the constructor for the FireRubyError class.

Parameters

message

A string containing the error message for the object.


23
24
# File 'lib/src.rb', line 23

def initialize(message)
end

Instance Method Details

#db_codeObject

This is the accessor for the database code attribute.


44
45
# File 'lib/src.rb', line 44

def db_code
end

#messageObject

This is the accessor for the error message attribute


30
31
# File 'lib/src.rb', line 30

def message
end

#sql_codeObject

This is the accessor for the SQL code attribute.


37
38
# File 'lib/src.rb', line 37

def sql_code
end

#to_sObject

This function generates a simple description string for a FireRubyError object.


52
53
# File 'lib/src.rb', line 52

def to_s
end