123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- class Severity:
- UNKNOWN = b"UNKNOWN"
- YAY = b"YAY"
- NORM = b"NORM"
- FAIL = b"FAIL"
- WARN = b"WARN"
- ERROR = b"ERROR"
- SECURITY = b"SECURITY"
- FATAL = b"FATAL"
- THE_PROGRAMMER_IS_DUMB = b"THE_PROGRAMMER_IS_DUMB"
- class IDCException(Exception):
- severity = Severity.UNKNOWN
- error_type = b"UNKNOWN"
- class IdiotError(IDCException):
- severity = Severity.THE_PROGRAMMER_IS_DUMB
- error_type = b"YOU_DUMB_DEVELOPER"
- class IDCUserCausedException(IDCException):
- """
- Should be subclassed by all of the 'user did something wrong' errors
- """
- severity = Severity.ERROR
- error_type = b"USER_ERROR"
- pass
- class UnknownCommand(IDCUserCausedException):
- error_type = b"UNKNOWN_COMMAND"
- class MissingArgumentError(IDCUserCausedException):
- error_type = b"MISSING_ARGUMENT"
- class NotLoggedIn(IDCUserCausedException):
- error_type = b"NOT_LOGGED_IN"
- class AlreadyLoggedIn(IDCUserCausedException):
- error_type = b"REDUNDENT_LOGIN"
- class LoginFailed(IDCUserCausedException):
- severity = Severity.FAIL
- error_type = b"LOGIN_FAILED"
- class NonAlphaKeyError(IDCUserCausedException):
- """
- Putting non-letters into keywords
- """
- error_type = b"INVALID_KEYWORD"
- class EscapeSequenceError(IDCUserCausedException):
- """
- I don't know this escape sequence
- """
- error_type = b"DONT_KNOW"
- class MultiCommandError(IDCUserCausedException):
- """
- Multiple commands in one line
- """
- error_type = b"MULTIPLE_CMDS"
- class MessageUndeliverableError(IDCUserCausedException):
- """
- User to deliver message to is offline and doesn't have the
- offline-messages option.
- """
- error_type = b"MSG_UNDELIVERABLE"
- class UserNotFoundError(IDCUserCausedException):
- """
- Raise this for clients trying to message, modify, or otherwise
- interact with a nonexistant user.
- """
- error_type = b"USER_NOT_FOUND"
- class StrangeError(IDCException):
- """
- Random errors that shouldn't exist and were probably caused by
- either the hardware blowing up or huge bugs.
- """
- error_type = b"DONT_KNOW"
- class KeyCollisionError(IDCUserCausedException):
- """
- Raise when there are redundent keys in a line.
- """
- error_type = b"REDUNDENT_KEYS"
- class NonexistantTargetError(IDCUserCausedException):
- """
- target doesnt exist
- """
- error_type = b"NONEXISTANT_TARGET"
- class NoExternalMessagesError(IDCUserCausedException):
- """
- sender not in chan
- """
- error_type = b"NO_EXTERNAL_MESSAGES"
- class TargetOfflineError(IDCUserCausedException):
- """
- Target offline
- """
- error_type = b"TARGET_OFFLINE"
|