fork github.com/doug-martin
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package errors
|
||||
|
||||
import "fmt"
|
||||
|
||||
type Error struct {
|
||||
err string
|
||||
}
|
||||
|
||||
func New(message string, args ...interface{}) error {
|
||||
return Error{err: "db: " + fmt.Sprintf(message, args...)}
|
||||
}
|
||||
|
||||
func NewEncodeError(t interface{}) error {
|
||||
return Error{err: "db_encode_error: " + fmt.Sprintf("Unable to encode value %+v", t)}
|
||||
}
|
||||
|
||||
func (e Error) Error() string {
|
||||
return e.err
|
||||
}
|
||||
Reference in New Issue
Block a user