Files
sqlite3/driver/error.go
2023-02-17 10:40:43 +00:00

8 lines
158 B
Go

package driver
type errorString string
func (e errorString) Error() string { return string(e) }
const assertErr = errorString("sqlite3: assertion failed")