summaryrefslogtreecommitdiff
path: root/src/service_identity/exceptions.py
blob: 1dfc10863177bd3a73a0dceb87c5f7a81600d5ad (plain)
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
"""
All exceptions and warnings thrown by ``service_identity``.

Separated into an own package for nicer tracebacks, you should still import
them from __init__.py.
"""

from __future__ import absolute_import, division, print_function

import attr


class SubjectAltNameWarning(Warning):
    """
    Server Certificate does not contain a ``SubjectAltName``.

    Hostname matching is performed on the ``CommonName`` which is deprecated.
    """


@attr.s
class VerificationError(Exception):
    """
    Service identity verification failed.
    """
    errors = attr.ib()

    def __str__(self):
        return self.__repr__()


@attr.s
class DNSMismatch(object):
    """
    Not matching DNSPattern could be found.
    """
    mismatched_id = attr.ib()


@attr.s
class SRVMismatch(object):
    """
    Not matching SRVPattern could be found.
    """
    mismatched_id = attr.ib()


@attr.s
class URIMismatch(object):
    """
    Not matching URIPattern could be found.
    """
    mismatched_id = attr.ib()


class CertificateError(Exception):
    """
    Certificate contains invalid or unexpected data.
    """