mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
Ticket: CM-1438 Reviewed By: TBD Testing Done: - Will checkin build files after some more testing and performance numbers. It will go into the testing repo for 2.0 - All TODO items are part of the checked in TODO file
18 lines
235 B
Python
18 lines
235 B
Python
#!/usr/bin/python
|
|
|
|
|
|
class Error(Exception):
|
|
"""Base class for exceptions in ifupdown"""
|
|
|
|
pass
|
|
|
|
class ifaceNotFoundError(Error):
|
|
pass
|
|
|
|
|
|
class invalidValueError(Error):
|
|
pass
|
|
|
|
class errorReadingStateError(Error):
|
|
pass
|