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 92 93 94 95 96 97 98 99 100 101
|
"""Exceptions raised by the s3tables service."""
from moto.core.exceptions import JsonRESTError
class BadRequestException(JsonRESTError):
code = 400
def __init__(self, message: str) -> None:
super().__init__("BadRequestException", message)
class InvalidContinuationToken(BadRequestException):
msg = "The continuation token is not valid."
def __init__(self) -> None:
super().__init__(self.msg)
class InvalidTableBucketName(BadRequestException):
msg = "The specified bucket name is not valid."
def __init__(self) -> None:
super().__init__(self.msg)
class InvalidTableName(BadRequestException):
template = "1 validation error detected: Value '%s' at 'name' failed to satisfy constraint: Member must satisfy regular expression pattern: [0-9a-z_]*"
def __init__(self, name: str) -> None:
super().__init__(self.template.format(name))
class InvalidNamespaceName(BadRequestException):
msg = "The specified namespace name is not valid."
def __init__(self) -> None:
super().__init__(self.msg)
class InvalidMetadataLocation(BadRequestException):
msg = "The specified metadata location is not valid."
def __init__(self) -> None:
super().__init__(self.msg)
class NothingToRename(BadRequestException):
msg = "Neither a new namespace name nor a new table name is specified."
def __init__(self) -> None:
super().__init__(self.msg)
class NotFoundException(JsonRESTError):
code = 404
def __init__(self, message: str) -> None:
super().__init__("NotFoundException", message)
class NamespaceDoesNotExist(NotFoundException):
msg = "The specified namespace does not exist."
def __init__(self) -> None:
super().__init__(self.msg)
class DestinationNamespaceDoesNotExist(NotFoundException):
msg = "The specified destination namespace does not exist."
def __init__(self) -> None:
super().__init__(self.msg)
class TableDoesNotExist(NotFoundException):
msg = "The specified table does not exist."
def __init__(self) -> None:
super().__init__(self.msg)
class ConflictException(JsonRESTError):
code = 409
def __init__(self, message: str) -> None:
super().__init__("ConflictException", message)
class VersionTokenMismatch(ConflictException):
msg = "Provided version token does not match the table version token."
def __init__(self) -> None:
super().__init__(self.msg)
class TableAlreadyExists(ConflictException):
msg = "A table with an identical name already exists in the namespace."
def __init__(self) -> None:
super().__init__(self.msg)
|