mirror of
https://github.com/caddyserver/caddy.git
synced 2026-07-02 14:51:10 +00:00
add more descriptive errors
Signed-off-by: Tw <tw19881113@gmail.com>
This commit is contained in:
parent
e5d33e73f3
commit
d0455c7b9c
6 changed files with 87 additions and 11 deletions
44
caddyhttp/httpserver/error.go
Normal file
44
caddyhttp/httpserver/error.go
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
package httpserver
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
var (
|
||||
_ error = NonHijackerError{}
|
||||
_ error = NonFlusherError{}
|
||||
_ error = NonCloseNotifierError{}
|
||||
)
|
||||
|
||||
// NonHijackerError is more descriptive error caused by a non hijacker
|
||||
type NonHijackerError struct {
|
||||
// underlying type which doesn't implement Hijack
|
||||
Underlying interface{}
|
||||
}
|
||||
|
||||
// Implement Error
|
||||
func (h NonHijackerError) Error() string {
|
||||
return fmt.Sprintf("%T is not a hijacker", h.Underlying)
|
||||
}
|
||||
|
||||
// NonFlusherError is more descriptive error caused by a non flusher
|
||||
type NonFlusherError struct {
|
||||
// underlying type which doesn't implement Flush
|
||||
Underlying interface{}
|
||||
}
|
||||
|
||||
// Implement Error
|
||||
func (f NonFlusherError) Error() string {
|
||||
return fmt.Sprintf("%T is not a flusher", f.Underlying)
|
||||
}
|
||||
|
||||
// NonCloseNotifierError is more descriptive error caused by a non closeNotifier
|
||||
type NonCloseNotifierError struct {
|
||||
// underlying type which doesn't implement CloseNotify
|
||||
Underlying interface{}
|
||||
}
|
||||
|
||||
// Implement Error
|
||||
func (c NonCloseNotifierError) Error() string {
|
||||
return fmt.Sprintf("%T is not a closeNotifier", c.Underlying)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue