aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/moto/py3/moto/opsworks/exceptions.py
blob: 4de6cfe92d227f53cdfce73cbe10f1d1a54e370a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import json
from werkzeug.exceptions import BadRequest


class ResourceNotFoundException(BadRequest):
    def __init__(self, message):
        super().__init__()
        self.description = json.dumps(
            {"message": message, "__type": "ResourceNotFoundException"}
        )


class ValidationException(BadRequest):
    def __init__(self, message):
        super().__init__()
        self.description = json.dumps(
            {"message": message, "__type": "ResourceNotFoundException"}
        )