mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
247: Added unit tests for errors.RequirementError
This commit is contained in:
@@ -19,6 +19,8 @@
|
||||
|
||||
"""
|
||||
All custom errors raised by `ipalib` package.
|
||||
|
||||
Also includes a few utility functions for raising exceptions.
|
||||
"""
|
||||
|
||||
TYPE_FORMAT = '%s: need a %r; got %r'
|
||||
@@ -155,16 +157,13 @@ class RequirementError(ValidationError):
|
||||
Raised when a required option was not provided.
|
||||
"""
|
||||
def __init__(self, name):
|
||||
ValidationError.__init__(self, name, None,
|
||||
'missing required value'
|
||||
)
|
||||
ValidationError.__init__(self, name, None, 'Required')
|
||||
|
||||
|
||||
class SetError(IPAError):
|
||||
msg = 'setting %r, but NameSpace does not allow attribute setting'
|
||||
|
||||
|
||||
|
||||
class RegistrationError(IPAError):
|
||||
"""
|
||||
Base class for errors that occur during plugin registration.
|
||||
|
||||
Reference in New Issue
Block a user