12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package plugin
- import "fmt"
- type errNotFound string
- func (name errNotFound) Error() string {
- return fmt.Sprintf("plugin %q not found", string(name))
- }
- func (errNotFound) NotFound() {}
- type errAmbiguous string
- func (name errAmbiguous) Error() string {
- return fmt.Sprintf("multiple plugins found for %q", string(name))
- }
- func (name errAmbiguous) InvalidParameter() {}
- type errDisabled string
- func (name errDisabled) Error() string {
- return fmt.Sprintf("plugin %s found but disabled", string(name))
- }
- func (name errDisabled) Conflict() {}
- type validationError struct {
- cause error
- }
- func (e validationError) Error() string {
- return e.cause.Error()
- }
- func (validationError) Conflict() {}
- func (e validationError) Cause() error {
- return e.cause
- }
- type systemError struct {
- cause error
- }
- func (e systemError) Error() string {
- return e.cause.Error()
- }
- func (systemError) SystemError() {}
- func (e systemError) Cause() error {
- return e.cause
- }
- type invalidFilter struct {
- filter string
- value []string
- }
- func (e invalidFilter) Error() string {
- msg := "Invalid filter '" + e.filter
- if len(e.value) > 0 {
- msg += fmt.Sprintf("=%s", e.value)
- }
- return msg + "'"
- }
- func (invalidFilter) InvalidParameter() {}
- type inUseError string
- func (e inUseError) Error() string {
- return "plugin " + string(e) + " is in use"
- }
- func (inUseError) Conflict() {}
- type enabledError string
- func (e enabledError) Error() string {
- return "plugin " + string(e) + " is enabled"
- }
- func (enabledError) Conflict() {}
- type alreadyExistsError string
- func (e alreadyExistsError) Error() string {
- return "plugin " + string(e) + " already exists"
- }
- func (alreadyExistsError) Conflict() {}
|