zitadel/internal/errors/already_exists.go
Livio Amstutz 616b31c959
fix: token check and error unwrapping (#3648)
* fix: token check and error unwrapping

* remove unused code
2022-05-18 10:49:16 +02:00

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
}