woj-server/internal/e/err.go

12 lines
143 B
Go

package e
type Err int
func (code Err) String() string {
msg, ok := msgText[code]
if ok {
return msg
}
return msgText[InternalError]
}