mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
6fde3632ef
The vendor/ folder was created with the help of @FiloSottile's gvt and vendorcheck. Any dependencies of Caddy plugins outside this repo are not vendored. We do not remove any unused, vendored packages because vendorcheck -u only checks using the current build configuration; i.e. packages that may be imported by files toggled by build tags of other systems. CI tests have been updated to ignore the vendor/ folder. When Go 1.9 is released, a few of the go commands should be revised to again use ./... as it will ignore the vendor folder by default.
45 lines
1,001 B
Go
45 lines
1,001 B
Go
package qerr
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/lucas-clemente/quic-go/utils"
|
|
)
|
|
|
|
// ErrorCode can be used as a normal error without reason.
|
|
type ErrorCode uint32
|
|
|
|
func (e ErrorCode) Error() string {
|
|
return e.String()
|
|
}
|
|
|
|
// A QuicError consists of an error code plus a error reason
|
|
type QuicError struct {
|
|
ErrorCode ErrorCode
|
|
ErrorMessage string
|
|
}
|
|
|
|
// Error creates a new QuicError instance
|
|
func Error(errorCode ErrorCode, errorMessage string) *QuicError {
|
|
return &QuicError{
|
|
ErrorCode: errorCode,
|
|
ErrorMessage: errorMessage,
|
|
}
|
|
}
|
|
|
|
func (e *QuicError) Error() string {
|
|
return fmt.Sprintf("%s: %s", e.ErrorCode.String(), e.ErrorMessage)
|
|
}
|
|
|
|
// ToQuicError converts an arbitrary error to a QuicError. It leaves QuicErrors
|
|
// unchanged, and properly handles `ErrorCode`s.
|
|
func ToQuicError(err error) *QuicError {
|
|
switch e := err.(type) {
|
|
case *QuicError:
|
|
return e
|
|
case ErrorCode:
|
|
return Error(e, "")
|
|
}
|
|
utils.Errorf("Internal error: %v", err)
|
|
return Error(InternalError, err.Error())
|
|
}
|