moto/moto/route53/exceptions.py

84 lines
2.3 KiB
Python
Raw Normal View History

"""Exceptions raised by the Route53 service."""
from moto.core.exceptions import RESTError
class Route53ClientError(RESTError):
"""Base class for Route53 errors."""
def __init__(self, *args, **kwargs):
kwargs.setdefault("template", "single_error")
super().__init__(*args, **kwargs)
class InvalidInput(Route53ClientError):
"""Malformed ARN for the CloudWatch log group."""
code = 400
def __init__(self):
message = "The ARN for the CloudWatch Logs log group is invalid"
super().__init__("InvalidInput", message)
class InvalidPaginationToken(Route53ClientError):
"""Bad NextToken specified when listing query logging configs."""
code = 400
def __init__(self):
message = (
"Route 53 can't get the next page of query logging configurations "
"because the specified value for NextToken is invalid."
)
super().__init__("InvalidPaginationToken", message)
class NoSuchCloudWatchLogsLogGroup(Route53ClientError):
"""CloudWatch LogGroup has a permissions policy, but does not exist."""
code = 404
def __init__(self):
message = "The specified CloudWatch Logs log group doesn't exist."
super().__init__("NoSuchCloudWatchLogsLogGroup", message)
class NoSuchHostedZone(Route53ClientError):
"""HostedZone does not exist."""
code = 404
def __init__(self, host_zone_id):
message = f"No hosted zone found with ID: {host_zone_id}"
super().__init__("NoSuchHostedZone", message)
self.content_type = "text/xml"
class NoSuchQueryLoggingConfig(Route53ClientError):
"""Query log config does not exist."""
code = 404
def __init__(self):
message = "The query logging configuration does not exist"
super().__init__("NoSuchQueryLoggingConfig", message)
class QueryLoggingConfigAlreadyExists(Route53ClientError):
"""Query log config exists for the hosted zone."""
code = 409
def __init__(self):
message = "A query logging configuration already exists for this hosted zone"
super().__init__("QueryLoggingConfigAlreadyExists", message)
class InvalidChangeBatch(Route53ClientError):
code = 400
def __init__(self):
message = "Number of records limit of 1000 exceeded."
super().__init__("InvalidChangeBatch", message)