Files
sqlite3/driver/error.go

11 lines
220 B
Go
Raw Normal View History

2023-02-17 10:40:43 +00:00
package driver
type errorString string
func (e errorString) Error() string { return string(e) }
2023-02-18 02:57:47 +00:00
const (
assertErr = errorString("sqlite3: assertion failed")
tailErr = errorString("sqlite3: multiple statements")
)