1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00

Documentation cleanup

Ticket:
Reviewed By:
Testing Done:

- these changes are mainly related to api doc generation using sphinx
This commit is contained in:
Roopa Prabhu
2014-07-22 11:15:56 -07:00
parent 2c0ad8b338
commit 904908bc5f
22 changed files with 472 additions and 114 deletions

23
ifupdown/exceptions.py Normal file
View File

@@ -0,0 +1,23 @@
#!/usr/bin/python
#
# Copyright 2014 Cumulus Networks, Inc. All rights reserved.
# Author: Roopa Prabhu, roopa@cumulusnetworks.com
#
# ifupdown --
# exceptions
#
class Error(Exception):
"""Base class for exceptions in ifupdown"""
pass
class ifaceNotFoundError(Error):
pass
class invalidValueError(Error):
pass
class errorReadingStateError(Error):
pass