2024-01-25 17:58:55 +01:00
|
|
|
package utils
|
|
|
|
|
2024-02-25 00:29:39 +01:00
|
|
|
type parseIntBeforeSeparatorError struct {
|
|
|
|
message string
|
2024-01-25 17:58:55 +01:00
|
|
|
}
|
|
|
|
|
2024-02-25 00:29:39 +01:00
|
|
|
func (m *parseIntBeforeSeparatorError) Error() string {
|
|
|
|
return "parseIntBeforeSeparator: " + m.message
|
2024-01-25 17:58:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type ParseExpirationError struct {
|
2024-02-25 00:29:39 +01:00
|
|
|
message string
|
2024-01-25 17:58:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ParseExpirationError) Error() string {
|
2024-02-25 00:29:39 +01:00
|
|
|
return "parseIntBeforeSeparator: " + m.message
|
2024-01-25 17:58:55 +01:00
|
|
|
}
|