mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
12 lines
294 B
Go
12 lines
294 B
Go
package driver
|
|
|
|
type errorString string
|
|
|
|
func (e errorString) Error() string { return string(e) }
|
|
|
|
const (
|
|
assertErr = errorString("sqlite3: assertion failed")
|
|
tailErr = errorString("sqlite3: multiple statements")
|
|
isolationErr = errorString("sqlite3: unsupported isolation level")
|
|
)
|