2023-12-08 14:30:55 +00:00
|
|
|
package zerrors
|
2020-03-19 13:39:06 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ Unauthenticated = (*UnauthenticatedError)(nil)
|
|
|
|
_ Error = (*UnauthenticatedError)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
type Unauthenticated interface {
|
|
|
|
error
|
|
|
|
IsUnauthenticated()
|
|
|
|
}
|
|
|
|
|
|
|
|
type UnauthenticatedError struct {
|
2023-12-08 14:30:55 +00:00
|
|
|
*ZitadelError
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowUnauthenticated(parent error, id, message string) error {
|
2023-12-08 14:30:55 +00:00
|
|
|
return &UnauthenticatedError{CreateZitadelError(parent, id, message)}
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowUnauthenticatedf(parent error, id, format string, a ...interface{}) error {
|
|
|
|
return ThrowUnauthenticated(parent, id, fmt.Sprintf(format, a...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err *UnauthenticatedError) IsUnauthenticated() {}
|
|
|
|
|
|
|
|
func IsUnauthenticated(err error) bool {
|
|
|
|
_, ok := err.(Unauthenticated)
|
|
|
|
return ok
|
|
|
|
}
|
2022-03-28 08:05:09 +00:00
|
|
|
|
|
|
|
func (err *UnauthenticatedError) Is(target error) bool {
|
|
|
|
t, ok := target.(*UnauthenticatedError)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
2023-12-08 14:30:55 +00:00
|
|
|
return err.ZitadelError.Is(t.ZitadelError)
|
2022-03-28 08:05:09 +00:00
|
|
|
}
|
2022-05-18 08:49:16 +00:00
|
|
|
|
|
|
|
func (err *UnauthenticatedError) Unwrap() error {
|
2023-12-08 14:30:55 +00:00
|
|
|
return err.ZitadelError
|
2022-05-18 08:49:16 +00:00
|
|
|
}
|