mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
29 lines
759 B
Python
29 lines
759 B
Python
class InvalidDescriptionInstanceException(Exception):
|
|
def __str__(self):
|
|
return "Invalid Description Instance"
|
|
|
|
|
|
class RepeatedCommandException(Exception):
|
|
def __str__(self):
|
|
return "Commands in handler cannot be repeated"
|
|
|
|
|
|
class RepeatedFlagNameException(Exception):
|
|
def __str__(self):
|
|
return "Repeated flag name in register command"
|
|
|
|
|
|
class TooManyTransferredArgsException(Exception):
|
|
def __str__(self):
|
|
return "Too many transferred arguments"
|
|
|
|
|
|
class RequiredArgumentNotPassedException(Exception):
|
|
def __str__(self):
|
|
return "Required argument not passed"
|
|
|
|
|
|
class IncorrectNumberOfHandlerArgsException(Exception):
|
|
def __str__(self):
|
|
return "Handler has incorrect number of arguments"
|