diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-03 21:55:44 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-03 21:55:44 +0000 |
commit | 62533bfb2baa2eac7a1361627f90bdda97452605 (patch) | |
tree | a8a7d7cd8ec93783a0ff4ae84553c719f45254c9 /ipalib/errors.py | |
parent | 6f739bcf671ee3028ffeab736e7ea1ff16489907 (diff) | |
download | freeipa-62533bfb2baa2eac7a1361627f90bdda97452605.tar.gz freeipa-62533bfb2baa2eac7a1361627f90bdda97452605.tar.xz freeipa-62533bfb2baa2eac7a1361627f90bdda97452605.zip |
245: Removed depreciated NormalizationError
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r-- | ipalib/errors.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py index 6f0941e20..de9a43a53 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -140,14 +140,6 @@ class ConversionError(ValidationError): ) -class NormalizationError(ValidationError): - def __init__(self, name, value, type): - self.type = type - ValidationError.__init__(self, name, value, - 'not %r' % type - ) - - class RuleError(ValidationError): """ Raised when a value fails a validation rule. |