mirror of
https://github.com/Belphemur/CBZOptimizer.git
synced 2025-10-14 04:28:51 +02:00
14 lines
194 B
Go
14 lines
194 B
Go
package errors
|
|
|
|
type PageIgnoredError struct {
|
|
s string
|
|
}
|
|
|
|
func (e *PageIgnoredError) Error() string {
|
|
return e.s
|
|
}
|
|
|
|
func NewPageIgnored(text string) error {
|
|
return &PageIgnoredError{text}
|
|
}
|