woj-server/internal/e/err.go

12 lines
149 B
Go

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