mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
616b31c959
* fix: token check and error unwrapping * remove unused code
40 lines
727 B
Go
40 lines
727 B
Go
package errors
|
|
|
|
import "fmt"
|
|
|
|
type NotFound interface {
|
|
error
|
|
IsNotFound()
|
|
}
|
|
|
|
type NotFoundError struct {
|
|
*CaosError
|
|
}
|
|
|
|
func ThrowNotFound(parent error, id, message string) error {
|
|
return &NotFoundError{CreateCaosError(parent, id, message)}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (err *NotFoundError) Is(target error) bool {
|
|
t, ok := target.(*NotFoundError)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return err.CaosError.Is(t.CaosError)
|
|
}
|
|
|
|
func (err *NotFoundError) Unwrap() error {
|
|
return err.CaosError
|
|
}
|