Files
sqlite3/driver/error.go
Nuno Cruces c351400be7 Tests.
2023-02-20 13:30:01 +00:00

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")
)