This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathexceptions.py
59 lines (34 loc) · 1.83 KB
/
exceptions.py
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
"""Collection of public exceptions raised by this library."""
class ServerlessRepoError(Exception):
"""Base exception raised by serverlessrepo library."""
MESSAGE = ""
def __init__(self, **kwargs):
"""Init the exception object."""
Exception.__init__(self, self.MESSAGE.format(**kwargs))
class InvalidApplicationMetadataError(ServerlessRepoError):
"""Raised when invalid application metadata is provided."""
MESSAGE = "Invalid application metadata: '{error_message}'"
class ApplicationMetadataNotFoundError(ServerlessRepoError):
"""Raised when application metadata is not found."""
MESSAGE = "Application metadata not found in the SAM template: '{error_message}'"
class InvalidApplicationPolicyError(ServerlessRepoError):
"""Raised when invalid application policy is provided."""
MESSAGE = "Invalid application policy: '{error_message}'"
class S3PermissionsRequired(ServerlessRepoError):
"""Raised when S3 bucket access is denied."""
MESSAGE = (
"The AWS Serverless Application Repository does not have read access to bucket '{bucket}', "
"key '{key}'. Please update your Amazon S3 bucket policy to grant the service read "
"permissions to the application artifacts you have uploaded to your S3 bucket. See "
"https://docs.aws.amazon.com/serverlessrepo/latest/devguide/serverless-app-publishing-applications.html"
" for more details."
)
class InvalidS3UriError(ServerlessRepoError):
"""Raised when the template contains invalid S3 URIs."""
MESSAGE = "{message}"
class ServerlessRepoClientError(ServerlessRepoError):
"""Wrapper for botocore ClientError."""
MESSAGE = "{message}"
class MultipleMatchingApplicationsError(ServerlessRepoError):
"""Raised when multiple matching applications are found."""
MESSAGE = "{message}"