chrly/db/capes/files/errors.go

10 lines
139 B
Go

package files
type CapeNotFoundError struct {
Who string
}
func (e CapeNotFoundError) Error() string {
return "Cape file not found."
}