"""RetryException Class.""" class RetryException(Exception): """RetryException for lambda retry.""" pass class RetriableError(Exception): """An error which should be reprocessed by the lambda.""" pass class ProjectMoveError(Exception): """Raised when a project move fails.""" def __init__(self, message): """Initialize the exception.""" self.message = message super().__init__(self.message)