"git@git.scipost.org:scipost/SciPost.git" did not exist on "bed9e983070a4e3ba358648454a2812cd4769e9e"
Newer
Older
class BaseCustomException(Exception):
def __init__(self, name):
self.name = name
def __str__(self):
return self.name
class CycleUpdateDeadlineError(BaseCustomException):
pass
class InvalidReportVettingValue(BaseCustomException):
pass
class ArxivPDFNotFound(Exception):
pass
class InvalidDocumentError(Exception):
pass