package domain const ( UnexpectedStatusError SimpleError = "unexpected status" ) type SimpleError string func (err SimpleError) Error() string { return string(err) }