aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/uevent/action.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/uevent/action.go')
-rw-r--r--internal/uevent/action.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/uevent/action.go b/internal/uevent/action.go
index 4f1f4f79..3eeb4d7e 100644
--- a/internal/uevent/action.go
+++ b/internal/uevent/action.go
@@ -59,6 +59,9 @@ func (act KobjectAction) MarshalText() ([]byte, error) {
// not yet supported by this package.
type UnsupportedActionError string
+var _ Recoverable = UnsupportedActionError("")
+
+func (UnsupportedActionError) recoverable() {}
func (e UnsupportedActionError) Error() string {
return "unsupported kobject_action " + strconv.Quote(string(e))
}