diff --git a/ciscoconfparse/errors.py b/ciscoconfparse/errors.py index f1eb2d02..c8e18a6b 100644 --- a/ciscoconfparse/errors.py +++ b/ciscoconfparse/errors.py @@ -52,3 +52,9 @@ class InvalidShellVariableMapping(BaseError): def __init__(self, msg=""): super().__init__(msg) self.msg = msg + +class InvalidCiscoInterface(BaseError): + + def __init__(self, msg=""): + super().__init__(msg) + self.msg = msg