mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
191690d905
* sdk * fix(sdk): return correct error type * AppendEventError instead of Aggregater error * fix(tests): tests * fix(tests): wantErr to is error func
33 lines
685 B
Go
33 lines
685 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 IsErrorAlreadyExists(err error) bool {
|
|
_, ok := err.(AlreadyExists)
|
|
return ok
|
|
}
|