Files
CBZOptimizer/pkg/converter/errors/converter_errors.go
2025-02-13 19:43:18 -05:00

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}
}