This commit is contained in:
Jeff Mitchell
2016-08-19 16:48:32 -04:00
parent cb106531db
commit 357ecb4dfe
16 changed files with 35 additions and 37 deletions

View File

@@ -1,24 +1,23 @@
package logical
type HTTPCodedError interface {
Error() string
Code() int
Error() string
Code() int
}
func CodedError(c int, s string) HTTPCodedError {
return &codedError{s,c}
return &codedError{s, c}
}
type codedError struct {
s string
code int
s string
code int
}
func (e *codedError) Error() string {
return e.s
return e.s
}
func (e *codedError) Code() int {
return e.code
return e.code
}