From 625b2f5f2dc172cfba7898e7dd4957c3176ecc59 Mon Sep 17 00:00:00 2001 From: Sebastian Muszynski Date: Wed, 9 Jan 2019 15:09:39 +0100 Subject: [PATCH] Derive from DeviceError --- miio/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miio/exceptions.py b/miio/exceptions.py index 30e58390e..be9d8125f 100644 --- a/miio/exceptions.py +++ b/miio/exceptions.py @@ -8,6 +8,6 @@ class DeviceError(DeviceException): pass -class RecoverableError(DeviceException): +class RecoverableError(DeviceError): """Exception communicating an recoverable error delivered by the target device.""" pass