Source File
error.go
Belonging Package
github.com/ncruces/go-sqlite3/internal/errutil
package errutilimport ()type ErrorString stringfunc ( ErrorString) () string { return string() }const (NilErr = ErrorString("sqlite3: invalid memory address or null pointer dereference")OOMErr = ErrorString("sqlite3: out of memory")NoNulErr = ErrorString("sqlite3: missing NUL terminator")TimeErr = ErrorString("sqlite3: invalid time value")WhenceErr = ErrorString("sqlite3: invalid whence")OffsetErr = ErrorString("sqlite3: invalid offset")TailErr = ErrorString("sqlite3: multiple statements")IsolationErr = ErrorString("sqlite3: unsupported isolation level")ValueErr = ErrorString("sqlite3: unsupported value")NoVFSErr = ErrorString("sqlite3: no such vfs: "))func () ErrorString {:= "sqlite3: assertion failed"if , , , := runtime.Caller(1); {+= " (" + + ":" + strconv.Itoa() + ")"}return ErrorString()}type ErrorJoiner []errorfunc ( *ErrorJoiner) ( ...error) {for , := range {if != nil {* = append(*, )}}}
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |