driver.ErrSkip 424
// ErrSkip may be returned by some optional interfaces' methods to
// indicate at runtime that the fast path is unavailable and the sql
// package should continue as if the optional interface was not
// implemented. ErrSkip is only supported where explicitly
// documented.
var ErrSkip = errors.New("driver: skip fast-path; continue as if unimplemented")
zlib.ErrHeader 416
// ErrHeader is returned when reading ZLIB data that has an invalid header.
var ErrHeader = errors.New("zlib: invalid header")
gzip.ErrHeader 416
// ErrHeader is returned when reading GZIP data that has an invalid header.
var ErrHeader = errors.New("gzip: invalid header")
tar.ErrHeader 416
var ErrHeader = errors.New("archive/tar: invalid tar header")
fs.ErrPermission 410
// Generic file system errors.
// Errors returned by file systems can be tested against these errors
// using errors.Is.
var ErrPermission = errPermission()
os.ErrPermission 410
// Portable analogs of some common system call errors.
//
// Errors returned from this package may be tested against these errors
// with errors.Is.
var ErrPermission = fs.ErrPermission
rsa.ErrVerification 409
// ErrVerification represents a failure to verify a signature.
// It is deliberately vague to avoid adaptive attacks.
var ErrVerification = errors.New("crypto/rsa: verification error")
runtime.REG_ERR 408
const REG_ERR = C._REG_ERR
fs.ErrInvalid 408
// Generic file system errors.
// Errors returned by file systems can be tested against these errors
// using errors.Is.
var ErrInvalid = errInvalid()
runtime.REG_ERR 408
const REG_ERR = C._REG_ERR
iotest.ErrTimeout 408
// ErrTimeout is a fake timeout error.
var ErrTimeout = errors.New("timeout")
flag.ErrHelp 408
// ErrHelp is the error returned if the -help or -h flag is invoked
// but no such flag is defined.
var ErrHelp = errors.New("flag: help requested")
zip.ErrAlgorithm 408
var ErrAlgorithm = errors.New("zip: unsupported compression algorithm")
pkcs12.ErrDecryption 408
// ErrDecryption represents a failure to decrypt the input.
var ErrDecryption = errors.New("pkcs12: decryption error, incorrect padding")
zip.ErrFormat 408
var ErrFormat = errors.New("zip: not a valid zip file")
os.ErrExist 408
// Portable analogs of some common system call errors.
//
// Errors returned from this package may be tested against these errors
// with errors.Is.
var ErrExist = fs.ErrExist
fs.ErrExist 408
// Generic file system errors.
// Errors returned by file systems can be tested against these errors
// using errors.Is.
var ErrExist = errExist()
runtime.REG_ERR 408
const REG_ERR = C.REG_ERR
zlib.ErrChecksum 408
// ErrChecksum is returned when reading ZLIB data that has an invalid checksum.
var ErrChecksum = errors.New("zlib: invalid checksum")
strconv.ErrRange 408
// ErrRange indicates that a value is out of range for the target type.
var ErrRange = errors.New("value out of range")
http.ErrHijacked 408
// Errors used by the HTTP server.
// ErrHijacked is returned by ResponseWriter.Write calls when
// the underlying connection has been hijacked using the
// Hijacker interface. A zero-byte write on a hijacked
// connection will return ErrHijacked without any other side
// effects.
var ErrHijacked = errors.New("http: connection has been hijacked")
strconv.ErrSyntax 408
// ErrSyntax indicates that a value does not have the right syntax for the target type.
var ErrSyntax = errors.New("invalid syntax")
zip.ErrChecksum 408
var ErrChecksum = errors.New("zip: checksum error")
exec.ErrDot 408
// ErrDot indicates that a path lookup resolved to an executable
// in the current directory due to ‘.’ being in the path, either
// implicitly or explicitly. See the package documentation for details.
//
// Note that functions in this package do not return ErrDot directly.
// Code should use errors.Is(err, ErrDot), not err == ErrDot,
// to test whether a returned error err is due to this condition.
var ErrDot = errors.New("cannot run executable found relative to current directory")
csv.ErrQuote 408
// These are the errors that can be returned in ParseError.Err.
var ErrQuote = errors.New("extraneous or missing \" in quoted-field")
httputil.ErrClosed 408
// Deprecated: No longer used.
var ErrClosed = &http.ProtocolError{ErrorString: "connection closed by user"}
net.ErrClosed 408
// ErrClosed is the error returned by an I/O call on a network
// connection that has already been closed, or that is closed by
// another goroutine before the I/O is completed. This may be wrapped
// in another error, and should normally be tested using
// errors.Is(err, net.ErrClosed).
var ErrClosed = errClosed
rsa.ErrDecryption 408
// ErrDecryption represents a failure to decrypt a message.
// It is deliberately vague to avoid adaptive attacks.
var ErrDecryption = errors.New("crypto/rsa: decryption error")
rpc.ErrShutdown 408
var ErrShutdown = errors.New("connection is shut down")
image.ErrFormat 408
// ErrFormat indicates that decoding encountered an unknown format.
var ErrFormat = errors.New("image: unknown format")
os.ErrInvalid 408
// Portable analogs of some common system call errors.
//
// Errors returned from this package may be tested against these errors
// with errors.Is.
// ErrInvalid indicates an invalid argument.
// Methods on File will return this error when the receiver is nil.
var ErrInvalid = fs.ErrInvalid
hex.ErrLength 408
// ErrLength reports an attempt to decode an odd-length input
// using Decode or DecodeString.
// The stream-based Decoder returns io.ErrUnexpectedEOF instead of ErrLength.
var ErrLength = errors.New("encoding/hex: odd length hex string")