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