This commit is contained in:
2025-02-24 19:04:20 +03:00
parent ef242a5732
commit 46cb2f70c5
3 changed files with 46 additions and 9 deletions
+15
View File
@@ -16,3 +16,18 @@ class RepeatedCommandException(Exception):
class RepeatedFlagNameException(Exception):
def __str__(self):
return "Repeated flag name in register command"
class CurrentCommandDoesNotProcessFlagsException(Exception):
def __str__(self):
return "Current command does not process flags"
class TooManyTransferredArgsException(Exception):
def __str__(self):
return "Too many transferred arguments"
class RequiredArgumentNotPassedException(Exception):
def __str__(self):
return "Required argument not passed"