You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
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...))
|
|
}
|
|
|