plakken/internal/utils/error.go

18 lines
336 B
Go
Raw Normal View History

package utils
type parseIntBeforeSeparatorError struct {
message string
}
func (m *parseIntBeforeSeparatorError) Error() string {
return "parseIntBeforeSeparator: " + m.message
}
type ParseExpirationError struct {
message string
}
func (m *ParseExpirationError) Error() string {
return "parseIntBeforeSeparator: " + m.message
}