diff options
author | Daniil Baturin <daniil@baturin.org> | 2023-01-10 15:29:47 +0000 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2023-01-10 15:40:20 +0000 |
commit | 2ac28861e2a94bef73713fbb78b00ec9beaf4189 (patch) | |
tree | 3b470091a65d585ac10f52cc2dedfd88c71e47a1 /python | |
parent | c86ed3df1e309b6a98de3ce88b508ea79453f9b1 (diff) | |
download | vyos-1x-2ac28861e2a94bef73713fbb78b00ec9beaf4189.tar.gz vyos-1x-2ac28861e2a94bef73713fbb78b00ec9beaf4189.zip |
opmode: T2546: add UnsupportedOperation to op mode errors
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/opmode.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/vyos/opmode.py b/python/vyos/opmode.py index 17a9ab581..19c476b1c 100644 --- a/python/vyos/opmode.py +++ b/python/vyos/opmode.py @@ -45,6 +45,10 @@ class PermissionDenied(Error): """ pass +class UnsupportedOperation(Error): + """ Requested operation is technically valid but is not implemented yet. """ + pass + class IncorrectValue(Error): """ Requested operation is valid, but an argument provided has an incorrect value, preventing successful completion. |