mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
8 lines
158 B
Go
8 lines
158 B
Go
|
|
package driver
|
||
|
|
|
||
|
|
type errorString string
|
||
|
|
|
||
|
|
func (e errorString) Error() string { return string(e) }
|
||
|
|
|
||
|
|
const assertErr = errorString("sqlite3: assertion failed")
|