go-errhttp/internalservererror.go

49 lines
996 B
Go
Raw Normal View History

2017-02-06 21:14:15 +00:00
package errhttp
import (
"net/http"
)
var _ Error = internalInternalServerError{}
var _ ServerError = internalInternalServerError{}
var _ InternalServerError = internalInternalServerError{}
var ErrInternalServerError error = InternalServerErrorWrap(nil)
2017-02-06 21:14:15 +00:00
type InternalServerError interface {
ServerError
InternalServerError()
}
var _ InternalServerError = internalInternalServerError{}
2017-02-06 21:14:15 +00:00
type internalInternalServerError struct {
err error
}
func InternalServerErrorWrap(err error) error {
return internalInternalServerError{
err:err,
}
}
func (receiver internalInternalServerError) Error() string {
return receiver.err.Error()
}
func (internalInternalServerError) ErrHTTP() int {
return http.StatusInternalServerError
}
2017-02-06 21:14:15 +00:00
func (internalInternalServerError) ServerError() {
// Nothing here.
}
func (internalInternalServerError) InternalServerError() {
// Nothing here.
}
func (receiver internalInternalServerError) Unwrap() error {
return receiver.err
}