diff options
author | John Estabrook <jestabro@vyos.io> | 2022-11-18 16:08:47 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2022-11-18 16:08:47 -0600 |
commit | 58057480e22712dc6d04396f8805d3db338bddfa (patch) | |
tree | 5f5ee1753edb918b42fc57ebdc2e04e5bf56dd8d /python | |
parent | 95abda42a4ef4a949b897a4aa5eaf52e6c2842a8 (diff) | |
download | vyos-1x-58057480e22712dc6d04396f8805d3db338bddfa.tar.gz vyos-1x-58057480e22712dc6d04396f8805d3db338bddfa.zip |
IPsec: T4828: raise op-mode error on incorrect value
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/opmode.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/vyos/opmode.py b/python/vyos/opmode.py index 2e896c8e6..9dba8d30f 100644 --- a/python/vyos/opmode.py +++ b/python/vyos/opmode.py @@ -45,6 +45,12 @@ class PermissionDenied(Error): """ pass +class IncorrectValue(Error): + """ Requested operation is valid, but an argument provided has an + incorrect value, preventing successful completion. + """ + pass + class InternalError(Error): """ Any situation when VyOS detects that it could not perform an operation correctly due to logic errors in its own code |