inherit exception from LibcloudError Signed-off-by: Quentin Pradet <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/5326c9aa Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/5326c9aa Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/5326c9aa Branch: refs/heads/trunk Commit: 5326c9aa938c35fd773d27d2d53c9e5e21d3658f Parents: 82b5c3c Author: Mika Lackman <[email protected]> Authored: Sun Sep 24 19:38:38 2017 +0300 Committer: Quentin Pradet <[email protected]> Committed: Wed Sep 27 07:04:33 2017 +0400 ---------------------------------------------------------------------- libcloud/common/upcloud.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/5326c9aa/libcloud/common/upcloud.py ---------------------------------------------------------------------- diff --git a/libcloud/common/upcloud.py b/libcloud/common/upcloud.py index a63be08..02413fc 100644 --- a/libcloud/common/upcloud.py +++ b/libcloud/common/upcloud.py @@ -16,9 +16,10 @@ import json import time from libcloud.common.exceptions import BaseHTTPError +from libcloud.common.types import LibcloudError -class UpcloudTimeoutException(Exception): +class UpcloudTimeoutException(LibcloudError): pass
