2023-12-08 16:30:55 +02:00
|
|
|
package zerrors
|
2020-03-19 14:39:06 +01:00
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
type NotFound interface {
|
|
|
|
error
|
|
|
|
IsNotFound()
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotFoundError struct {
|
2023-12-08 16:30:55 +02:00
|
|
|
*ZitadelError
|
2020-03-19 14:39:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowNotFound(parent error, id, message string) error {
|
2023-12-08 16:30:55 +02:00
|
|
|
return &NotFoundError{CreateZitadelError(parent, id, message)}
|
2020-03-19 14:39:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowNotFoundf(parent error, id, format string, a ...interface{}) error {
|
|
|
|
return ThrowNotFound(parent, id, fmt.Sprintf(format, a...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err *NotFoundError) IsNotFound() {}
|
|
|
|
|
|
|
|
func IsNotFound(err error) bool {
|
|
|
|
_, ok := err.(NotFound)
|
|
|
|
return ok
|
|
|
|
}
|
2022-03-28 10:05:09 +02:00
|
|
|
|
|
|
|
func (err *NotFoundError) Is(target error) bool {
|
|
|
|
t, ok := target.(*NotFoundError)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
2023-12-08 16:30:55 +02:00
|
|
|
return err.ZitadelError.Is(t.ZitadelError)
|
2022-03-28 10:05:09 +02:00
|
|
|
}
|
2022-05-18 10:49:16 +02:00
|
|
|
|
|
|
|
func (err *NotFoundError) Unwrap() error {
|
2023-12-08 16:30:55 +02:00
|
|
|
return err.ZitadelError
|
2022-05-18 10:49:16 +02:00
|
|
|
}
|