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