]> git.llucax.com Git - software/pymin.git/commitdiff
Remove unused error classes.
authorLeandro Lucarella <llucax@gmail.com>
Tue, 16 Oct 2007 03:28:36 +0000 (00:28 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 16 Oct 2007 03:28:36 +0000 (00:28 -0300)
pymin/services/dhcp/__init__.py
pymin/services/firewall/__init__.py
pymin/services/nat/__init__.py
pymin/services/ppp/__init__.py
pymin/services/proxy/__init__.py
pymin/services/vrrp/__init__.py

index 6e6f19829040f66b8764ac54d3701b26a578b6d2..7f0bb7db48516293fd7a90b4e7df20929c13adbc 100644 (file)
@@ -8,18 +8,7 @@ from pymin.services.util import Restorable, ConfigWriter, InitdHandler, \
                                 TransactionalHandler, ParametersHandler, \
                                 DictSubHandler
 
-__ALL__ = ('DhcpHandler', 'Error')
-
-class Error(HandlerError):
-    r"""
-    Error(message) -> Error instance :: Base DhcpHandler exception class.
-
-    All exceptions raised by the DhcpHandler inherits from this one, so you can
-    easily catch any DhcpHandler exception.
-
-    message - A descriptive error message.
-    """
-    pass
+__ALL__ = ('DhcpHandler',)
 
 class Host(Sequence):
     r"""Host(name, ip, mac) -> Host instance :: Class representing a host.
index 90d3ee9e44b662517db577e36ed8a4a5d76e8399..71a95481380b943e4957ed4d12e049067f0645f0 100644 (file)
@@ -10,18 +10,7 @@ from pymin.dispatcher import Handler, handler, HandlerError
 from pymin.services.util import Restorable, ConfigWriter, ServiceHandler, \
                                 TransactionalHandler, ListSubHandler
 
-__ALL__ = ('FirewallHandler', 'Error')
-
-class Error(HandlerError):
-    r"""
-    Error(command) -> Error instance :: Base FirewallHandler exception class.
-
-    All exceptions raised by the FirewallHandler inherits from this one, so you can
-    easily catch any FirewallHandler exception.
-
-    message - A descriptive error message.
-    """
-    pass
+__ALL__ = ('FirewallHandler',)
 
 class Rule(Sequence):
     r"""Rule(chain, target[, src[, dst[, ...]]]) -> Rule instance.
index c22783ff1d4a17a2f723c38e72a05a013adfe770..4724fba550b7bab420dd42bd2ef446ada7356c7d 100644 (file)
@@ -8,18 +8,7 @@ from pymin.services.util import Restorable, ConfigWriter, RestartHandler, \
                                 ReloadHandler, TransactionalHandler, \
                                 ListSubHandler, call
 
-__ALL__ = ('NatHandler', 'Error')
-
-class Error(HandlerError):
-    r"""
-    Error(command) -> Error instance :: Base NatHandler exception class.
-
-    All exceptions raised by the NatHandler inherits from this one, so you can
-    easily catch any NatHandler exception.
-
-    message - A descriptive error message.
-    """
-    pass
+__ALL__ = ('NatHandler',)
 
 class PortForward(Sequence):
     r"""PortForward(dev, protocol, port, dst[, dst_port[, ...]]) -> PortForward.
index 028eb912c316f95d22514192cdd963dfcd4e4f07..0445df1c8146ad7f42a8b725b100d16d0df7b3f8 100644 (file)
@@ -7,18 +7,7 @@ from pymin.dispatcher import Handler, handler, HandlerError
 from pymin.services.util import Restorable, ConfigWriter \
                                 ,TransactionalHandler, DictSubHandler, call
 
-__ALL__ = ('PppHandler')
-
-class Error(HandlerError):
-    r"""
-    Error(command) -> Error instance :: Base ConnectionHandler exception class.
-
-    All exceptions raised by the ConnectionHandler inherits from this one, so you can
-    easily catch any ConnectionHandler exception.
-
-    message - A descriptive error message.
-    """
-    pass
+__ALL__ = ('PppHandler',)
 
 class ConnectionError(Error, KeyError):
     r"""
index 85bafd8c2d44cecd0299b49ce9ae240a51ca5e7b..715b0ab2ac6a4b3e597498151a43ac2d81272fef 100644 (file)
@@ -10,18 +10,7 @@ from pymin.services.util import Restorable, ConfigWriter, InitdHandler, \
 
 import crypt
 
-__ALL__ = ('ProxyHandler', 'Error')
-
-class Error(HandlerError):
-    r"""
-    Error(command) -> Error instance :: Base DnsHandler exception class.
-
-    All exceptions raised by the DnsHandler inherits from this one, so you can
-    easily catch any DnsHandler exception.
-
-    message - A descriptive error message.
-    """
-    pass
+__ALL__ = ('ProxyHandler',)
 
 class Host(Sequence):
     def __init__(self,ip):
index 8f5a0037ab065a09e6028edf7217ffb58017ddd7..393f90c23ef7825e506942ec2bbf361f9ab7c6f2 100644 (file)
@@ -7,7 +7,7 @@ from pymin.seqtools import Sequence
 from pymin.dispatcher import Handler, handler, HandlerError
 from pymin.services.util import Restorable, TransactionalHandler, ParametersHandler, call
 
-__ALL__ = ('VrrpHandler')
+__ALL__ = ('VrrpHandler',)
 
 pid_filename = 'vrrp.pid'