[문서]class KinmatchException(Exception):
def __init__(self, message):
self.message = message
def __unicode__(self):
return self.message
def __str__(self):
return self.message
[문서]class DBConnectionException(KinmatchException):
def __init__(self, *args, **kwargs):
super(DBConnectionException, self).__init__(*args, **kwargs)
[문서]class AlreadyExistException(KinmatchException):
def __init__(self, *args, **kwargs):
super(AlreadyExistException, self).__init__(*args, **kwargs)
[문서]class NoValueException(KinmatchException):
def __init__(self, *args, **kwargs):
super(NoValueException, self).__init__(*args, **kwargs)
[문서]class FileTypeException(KinmatchException):
def __init__(self, *args, **kwargs):
super(FileTypeException, self).__init__(*args, **kwargs)
[문서]class ParameterException(KinmatchException):
def __init__(self, *args, **kwargs):
super(ParameterException, self).__init__(*args, **kwargs)
[문서]class ParsingException(KinmatchException):
def __init__(self, *args, **kwargs):
super(ParsingException, self).__init__(*args, **kwargs)