Malformed error

This commit is contained in:
Nikita Tokarchuk
2018-12-20 01:50:03 +01:00
parent 972516ff9b
commit f3b8874c4d
+16
View File
@@ -0,0 +1,16 @@
package errors
import "fmt"
// Malformed error
type Malformed string
// Error message
func (m Malformed) Error() string {
return fmt.Sprintf("Malformed, %s", string(m))
}
// Malformedf creates an instance of Malformed
func Malformedf(format string, params ...interface{}) error {
return Malformed(fmt.Sprintf(format, params...))
}