Skip to content

Commit

Permalink
Add InvalidCiscoInterface() error
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Oct 13, 2023
1 parent 66bf344 commit 782fcaf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ciscoconfparse/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 782fcaf

Please sign in to comment.