2020-03-19 13:39:06 +00:00
|
|
|
package errors
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ Unimplemented = (*UnimplementedError)(nil)
|
|
|
|
_ Error = (*UnimplementedError)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
type Unimplemented interface {
|
|
|
|
error
|
|
|
|
IsUnimplemented()
|
|
|
|
}
|
|
|
|
|
|
|
|
type UnimplementedError struct {
|
|
|
|
*CaosError
|
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowUnimplemented(parent error, id, message string) error {
|
2020-04-07 16:36:37 +00:00
|
|
|
return &UnimplementedError{CreateCaosError(parent, id, message)}
|
2020-03-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ThrowUnimplementedf(parent error, id, format string, a ...interface{}) error {
|
|
|
|
return ThrowUnimplemented(parent, id, fmt.Sprintf(format, a...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err *UnimplementedError) IsUnimplemented() {}
|
|
|
|
|
|
|
|
func IsUnimplemented(err error) bool {
|
|
|
|
_, ok := err.(Unimplemented)
|
|
|
|
return ok
|
|
|
|
}
|