2020-03-19 13:39:06 +00:00
|
|
|
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 {
|
2020-04-07 16:36:37 +00:00
|
|
|
return &AlreadyExistsError{CreateCaosError(parent, id, message)}
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowAlreadyExistsf(parent error, id, format string, a ...interface{}) error {
|
2020-04-07 16:36:37 +00:00
|
|
|
return &AlreadyExistsError{CreateCaosError(parent, id, fmt.Sprintf(format, a...))}
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (err *AlreadyExistsError) IsAlreadyExists() {}
|
|
|
|
|
|
|
|
func IsErrorAlreadyExists(err error) bool {
|
|
|
|
_, ok := err.(AlreadyExists)
|
|
|
|
return ok
|
|
|
|
}
|