Move files
This commit is contained in:
parent
3cf28379e8
commit
00cc8225c5
159 changed files with 31 additions and 49 deletions
3
great_ai/exceptions/__init__.py
Normal file
3
great_ai/exceptions/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from .argument_validation_error import ArgumentValidationError
|
||||
from .missing_argument_error import MissingArgumentError
|
||||
from .wrong_decorator_order_error import WrongDecoratorOrderError
|
||||
2
great_ai/exceptions/argument_validation_error.py
Normal file
2
great_ai/exceptions/argument_validation_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class ArgumentValidationError(Exception):
|
||||
pass
|
||||
2
great_ai/exceptions/missing_argument_error.py
Normal file
2
great_ai/exceptions/missing_argument_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class MissingArgumentError(Exception):
|
||||
pass
|
||||
2
great_ai/exceptions/wrong_decorator_order_error.py
Normal file
2
great_ai/exceptions/wrong_decorator_order_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class WrongDecoratorOrderError(Exception):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue