Exception: SQLite3::Exception
- Inherits:
-
StandardError
- Object
- StandardError
- SQLite3::Exception
- Defined in:
- lib/sqlite3/errors.rb
Direct Known Subclasses
AbortException, AuthorizationException, BusyException, CantOpenException, ConstraintException, CorruptException, EmptyException, FormatException, FullException, IOException, InternalException, InterruptException, LockedException, MemoryException, MismatchException, MisuseException, NotADatabaseException, NotFoundException, PermissionException, ProtocolException, RangeException, ReadOnlyException, SQLException, SchemaChangedException, TooBigException, UnsupportedException
Class Method Summary (collapse)
-
+ (Object) code
The numeric error code that this exception represents.
Instance Method Summary (collapse)
-
- (Object) code
A convenience for accessing the error code for this exception.
Class Method Details
+ (Object) code
The numeric error code that this exception represents.
8 9 10 |
# File 'lib/sqlite3/errors.rb', line 8 def self.code @code end |
Instance Method Details
- (Object) code
A convenience for accessing the error code for this exception.
13 14 15 |
# File 'lib/sqlite3/errors.rb', line 13 def code self.class.code end |