Class: FireRuby::FireRubyException
- Inherits:
-
Object
- Object
- FireRuby::FireRubyException
- Defined in:
- lib/src.rb
Overview
This class provides the exception type used by the FireRuby library.
Instance Method Summary collapse
-
#db_code ⇒ Object
This is the accessor for the database code attribute.
-
#initialize(message) ⇒ FireRubyException
constructor
This is the constructor for the FireRubyError class.
-
#message ⇒ Object
This is the accessor for the error message attribute.
-
#sql_code ⇒ Object
This is the accessor for the SQL code attribute.
-
#to_s ⇒ Object
This function generates a simple description string for a FireRubyError object.
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() end |
Instance Method Details
#db_code ⇒ Object
This is the accessor for the database code attribute.
44 45 |
# File 'lib/src.rb', line 44 def db_code end |
#message ⇒ Object
This is the accessor for the error message attribute
30 31 |
# File 'lib/src.rb', line 30 def end |
#sql_code ⇒ Object
This is the accessor for the SQL code attribute.
37 38 |
# File 'lib/src.rb', line 37 def sql_code end |
#to_s ⇒ Object
This function generates a simple description string for a FireRubyError object.
52 53 |
# File 'lib/src.rb', line 52 def to_s end |