File: errors.py

package info (click to toggle)
json-schema-validator 2.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 308 kB
  • ctags: 129
  • sloc: python: 2,256; makefile: 21; sh: 2
file content (65 lines) | stat: -rw-r--r-- 2,198 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright (C) 2010, 2011 Linaro Limited
#
# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
#
# This file is part of json-schema-validator.
#
# json-schema-validator is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# as published by the Free Software Foundation
#
# json-schema-validator is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with json-schema-validator.  If not, see <http://www.gnu.org/licenses/>.

"""
Error classes used by this package
"""


class SchemaError(ValueError):
    """
    An exception raised when there is a problem with the schema itself.
    """


class ValidationError(ValueError):
    """
    An exception raised when validator finds mismatch between the validated
    object and the schema.

    :ivar message: 
        Old and verbose message that contains less helpful message and lots of
        JSON data (deprecated).

    :ivar new_message:
        short and concise message about the problem

    :ivar object_expr:
        A JavaScript expression that evaluates to the object that failed to
        validate. The expression always starts with a root object called
        ``'object'``.

    :ivar schema_expr:
        A JavaScript expression that evaluates to the schema that was checked
        at the time validation failed. The expression always starts with a root
        object called ``'schema'``.
    """

    def __init__(self, message, new_message=None,
                 object_expr=None, schema_expr=None):
        self.message = message
        self.new_message = new_message
        self.object_expr = object_expr
        self.schema_expr = schema_expr

    def __str__(self):
        return ("ValidationError: {0} "
                "object_expr={1!r}, "
                "schema_expr={2!r})").format(
                    self.new_message, self.object_expr,
                    self.schema_expr)