Files
sqlite3/driver/error.go

8 lines
158 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) }
const assertErr = errorString("sqlite3: assertion failed")