You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.0 KiB
54 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
"""Exception classes for marshmallow-related errors."""
|
|
|
|
from marshmallow.compat import basestring
|
|
|
|
class MarshmallowError(Exception):
|
|
"""Base class for all marshmallow-related errors."""
|
|
pass
|
|
|
|
|
|
class ValidationError(MarshmallowError):
|
|
"""Raised when validation fails on a field. Validators and custom fields should
|
|
raise this exception.
|
|
|
|
:param message: An error message, list of error messages, or dict of
|
|
error messages.
|
|
:param list field_names: Field names to store the error on.
|
|
If `None`, the error is stored in its default location.
|
|
:param list fields: `Field` objects to which the error applies.
|
|
"""
|
|
|
|
def __init__(self, message, field_names=None, fields=None, data=None, **kwargs):
|
|
if not isinstance(message, dict) and not isinstance(message, list):
|
|
messages = [message]
|
|
else:
|
|
messages = message
|
|
#: String, list, or dictionary of error messages.
|
|
#: If a `dict`, the keys will be field names and the values will be lists of
|
|
#: messages.
|
|
self.messages = messages
|
|
#: List of field objects which failed validation.
|
|
self.fields = fields
|
|
if isinstance(field_names, basestring):
|
|
#: List of field_names which failed validation.
|
|
self.field_names = [field_names]
|
|
else: # fields is a list or None
|
|
self.field_names = field_names or []
|
|
# Store nested data
|
|
self.data = data
|
|
self.kwargs = kwargs
|
|
MarshmallowError.__init__(self, message)
|
|
|
|
def normalized_messages(self, no_field_name="_schema"):
|
|
if isinstance(self.messages, dict):
|
|
return self.messages
|
|
if len(self.field_names) == 0:
|
|
return {no_field_name: self.messages}
|
|
return dict((name, self.messages) for name in self.field_names)
|
|
|
|
class RegistryError(NameError):
|
|
"""Raised when an invalid operation is performed on the serializer
|
|
class registry.
|
|
"""
|
|
pass
|
|
|