File: exceptions.py

package info (click to toggle)
python-moto 5.1.18-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 116,520 kB
  • sloc: python: 636,725; javascript: 181; makefile: 39; sh: 3
file content (91 lines) | stat: -rw-r--r-- 2,980 bytes parent folder | download | duplicates (2)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
"""Exceptions raised by the appmesh service."""

from moto.core.exceptions import JsonRESTError


class MeshError(JsonRESTError):
    code = 400


class MeshNotFoundError(MeshError):
    def __init__(self, mesh_name: str) -> None:
        super().__init__(
            "MeshNotFound",
            f"There are no meshes with the name {mesh_name}.",
        )


class ResourceNotFoundError(MeshError):
    def __init__(self, resource_arn: str) -> None:
        super().__init__(
            "ResourceNotFound",
            f"There are no mesh resources with the arn {resource_arn}.",
        )


class MeshOwnerDoesNotMatchError(MeshError):
    def __init__(self, mesh_name: str, mesh_owner: str) -> None:
        super().__init__(
            "MeshOwnerDoesNotMatch",
            f"The owner of the mesh {mesh_name} does not match the owner name provided: {mesh_owner}.",
        )


class VirtualRouterNameAlreadyTakenError(MeshError):
    def __init__(self, mesh_name: str, virtual_router_name: str) -> None:
        super().__init__(
            "VirtualRouterNameAlreadyTaken",
            f"There is already a virtual router named {virtual_router_name} associated with the mesh {mesh_name}.",
        )


class VirtualRouterNotFoundError(MeshError):
    def __init__(self, mesh_name: str, virtual_router_name: str) -> None:
        super().__init__(
            "VirtualRouterNotFound",
            f"The mesh {mesh_name} does not have a virtual router named {virtual_router_name}.",
        )


class RouteNotFoundError(MeshError):
    def __init__(
        self, mesh_name: str, virtual_router_name: str, route_name: str
    ) -> None:
        super().__init__(
            "RouteNotFound",
            f"There is no route named {route_name} associated with router {virtual_router_name} in mesh {mesh_name}.",
        )


class RouteNameAlreadyTakenError(MeshError):
    def __init__(
        self, mesh_name: str, virtual_router_name: str, route_name: str
    ) -> None:
        super().__init__(
            "RouteNameAlreadyTaken",
            f"There is already a route named {route_name} associated with router {virtual_router_name} in mesh {mesh_name}.",
        )


class MissingRequiredFieldError(MeshError):
    def __init__(self, field_name: str) -> None:
        super().__init__(
            "MissingRequiredField",
            f"{field_name} must be defined.",
        )


class VirtualNodeNotFoundError(MeshError):
    def __init__(self, mesh_name: str, virtual_node_name: str) -> None:
        super().__init__(
            "VirtualNodeNotFound",
            f"{virtual_node_name} is not a virtual node associated with mesh {mesh_name}",
        )


class VirtualNodeNameAlreadyTakenError(MeshError):
    def __init__(self, mesh_name: str, virtual_node_name: str) -> None:
        super().__init__(
            "VirtualNodeNameAlreadyTaken",
            f"There is already a virtual node named {virtual_node_name} associated with mesh {mesh_name}",
        )