fermi/main/errors.go

11 lines
117 B
Go

package main
type MyError struct {
Code string
Msg string
}
func (me MyError) Error() string {
return me.Msg
}