2023-12-08 14:30:55 +00:00
|
|
|
package zerrors
|
2020-03-19 13:39:06 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ Internal = (*InternalError)(nil)
|
|
|
|
_ Error = (*InternalError)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
type Internal interface {
|
|
|
|
error
|
|
|
|
IsInternal()
|
|
|
|
}
|
|
|
|
|
|
|
|
type InternalError struct {
|
2023-12-08 14:30:55 +00:00
|
|
|
*ZitadelError
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowInternal(parent error, id, message string) error {
|
2023-12-08 14:30:55 +00:00
|
|
|
return &InternalError{CreateZitadelError(parent, id, message)}
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowInternalf(parent error, id, format string, a ...interface{}) error {
|
|
|
|
return ThrowInternal(parent, id, fmt.Sprintf(format, a...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err *InternalError) IsInternal() {}
|
|
|
|
|
|
|
|
func IsInternal(err error) bool {
|
|
|
|
_, ok := err.(Internal)
|
|
|
|
return ok
|
|
|
|
}
|
2022-03-28 08:05:09 +00:00
|
|
|
|
|
|
|
func (err *InternalError) Is(target error) bool {
|
|
|
|
t, ok := target.(*InternalError)
|
|
|
|
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 *InternalError) Unwrap() error {
|
2023-12-08 14:30:55 +00:00
|
|
|
return err.ZitadelError
|
2022-05-18 08:49:16 +00:00
|
|
|
}
|