moto/moto/glue/exceptions.py

100 lines
2.7 KiB
Python
Raw Normal View History

from moto.core.exceptions import JsonRESTError
class GlueClientError(JsonRESTError):
code = 400
class AlreadyExistsException(GlueClientError):
def __init__(self, typ):
2022-01-14 18:51:49 -01:00
super().__init__("AlreadyExistsException", "%s already exists." % (typ))
class DatabaseAlreadyExistsException(AlreadyExistsException):
def __init__(self):
2022-01-14 18:51:49 -01:00
super().__init__("Database")
class TableAlreadyExistsException(AlreadyExistsException):
def __init__(self):
2022-01-14 18:51:49 -01:00
super().__init__("Table")
class PartitionAlreadyExistsException(AlreadyExistsException):
def __init__(self):
2022-01-14 18:51:49 -01:00
super().__init__("Partition")
class CrawlerAlreadyExistsException(AlreadyExistsException):
def __init__(self):
2022-01-14 18:51:49 -01:00
super().__init__("Crawler")
class EntityNotFoundException(GlueClientError):
def __init__(self, msg):
2022-01-14 18:51:49 -01:00
super().__init__("EntityNotFoundException", msg)
class DatabaseNotFoundException(EntityNotFoundException):
def __init__(self, db):
2022-01-14 18:51:49 -01:00
super().__init__("Database %s not found." % db)
class TableNotFoundException(EntityNotFoundException):
def __init__(self, tbl):
2022-01-14 18:51:49 -01:00
super().__init__("Table %s not found." % tbl)
class PartitionNotFoundException(EntityNotFoundException):
def __init__(self):
2022-01-14 18:51:49 -01:00
super().__init__("Cannot find partition.")
class CrawlerNotFoundException(EntityNotFoundException):
def __init__(self, crawler):
2022-01-14 18:51:49 -01:00
super().__init__("Crawler %s not found." % crawler)
2022-03-19 12:30:46 -04:00
class JobNotFoundException(EntityNotFoundException):
def __init__(self, job):
super().__init__("Job %s not found." % job)
class VersionNotFoundException(EntityNotFoundException):
def __init__(self):
2022-01-14 18:51:49 -01:00
super().__init__("Version not found.")
2021-10-29 02:50:08 +05:30
class CrawlerRunningException(GlueClientError):
def __init__(self, msg):
2022-01-14 18:51:49 -01:00
super().__init__("CrawlerRunningException", msg)
2021-10-29 02:50:08 +05:30
class CrawlerNotRunningException(GlueClientError):
def __init__(self, msg):
2022-01-14 18:51:49 -01:00
super().__init__("CrawlerNotRunningException", msg)
2022-03-22 06:19:56 -04:00
class ConcurrentRunsExceededException(GlueClientError):
def __init__(self, msg):
super().__init__("ConcurrentRunsExceededException", msg)
class _InvalidOperationException(GlueClientError):
def __init__(self, error_type, op, msg):
super().__init__(
error_type,
"An error occurred (%s) when calling the %s operation: %s"
% (error_type, op, msg),
)
class InvalidInputException(_InvalidOperationException):
def __init__(self, op, msg):
super().__init__("InvalidInputException", op, msg)
class InvalidStateException(_InvalidOperationException):
def __init__(self, op, msg):
super().__init__("InvalidStateException", op, msg)