5.6. Errors

exception simplesqlite.NullDatabaseConnectionError[source]

Bases: exceptions.Exception

Raised when executing an operation of SimpleSQLite instance without connection to a SQLite database file.

exception simplesqlite.TableNotFoundError[source]

Bases: exceptions.Exception

Raised when accessed the table that not exists in the database.

exception simplesqlite.AttributeNotFoundError[source]

Bases: exceptions.Exception

Raised when accessed the attribute that not exists in the table.

exception simplesqlite.SqlSyntaxError[source]

Bases: exceptions.Exception

Raised when a SQLite query syntax is invalid.