mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
616b31c959
* fix: token check and error unwrapping * remove unused code
45 lines
921 B
Go
45 lines
921 B
Go
package errors
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
_ AlreadyExists = (*AlreadyExistsError)(nil)
|
|
_ Error = (*AlreadyExistsError)(nil)
|
|
)
|
|
|
|
type AlreadyExists interface {
|
|
error
|
|
IsAlreadyExists()
|
|
}
|
|
|
|
type AlreadyExistsError struct {
|
|
*CaosError
|
|
}
|
|
|
|
func ThrowAlreadyExists(parent error, id, message string) error {
|
|
return &AlreadyExistsError{CreateCaosError(parent, id, message)}
|
|
}
|
|
|
|
func ThrowAlreadyExistsf(parent error, id, format string, a ...interface{}) error {
|
|
return &AlreadyExistsError{CreateCaosError(parent, id, fmt.Sprintf(format, a...))}
|
|
}
|
|
|
|
func (err *AlreadyExistsError) IsAlreadyExists() {}
|
|
|
|
func (err *AlreadyExistsError) Is(target error) bool {
|
|
t, ok := target.(*AlreadyExistsError)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return err.CaosError.Is(t.CaosError)
|
|
}
|
|
|
|
func IsErrorAlreadyExists(err error) bool {
|
|
_, ok := err.(AlreadyExists)
|
|
return ok
|
|
}
|
|
|
|
func (err *AlreadyExistsError) Unwrap() error {
|
|
return err.CaosError
|
|
}
|