aides-repo-api/internal/services/taskservice/errors.go

12 lines
163 B
Go
Raw Normal View History

2024-12-26 13:42:54 +00:00
package taskservice
import "fmt"
type TooOldError struct {
Name string
}
func (e TooOldError) Error() string {
return fmt.Sprintf("%s is too old!", e.Name)
}