@@ -0,0 +1 @@
+from .sport import *
@@ -0,0 +1,2 @@
+from .order_not_defined import OrderNotDefined
+from .client_not_defined import ClientNotDefined
@@ -0,0 +1,7 @@
+class ClientNotDefined(Exception):
+ """
+ If order_synced field is not defined throw exception
+ def __init__(self, message="client field is not defined"):
+ self.message = message
+ super().__init__(self.message)
+class OrderNotDefined(Exception):
+ def __init__(self, message="order_synced is not defined"):