Loading src/edgecloud/clients/errors.py 0 → 100644 +3 −0 Original line number Diff line number Diff line class EdgeCloudPlatformError(Exception): pass src/edgecloud/clients/i2edge/common.py +2 −1 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ import json from typing import Optional import requests from src.edgecloud.clients.errors import EdgeCloudPlatformError from pydantic import BaseModel from src import logger Loading @@ -20,7 +21,7 @@ from src import logger log = logger.get_logger(__name__) class I2EdgeError(Exception): class I2EdgeError(EdgeCloudPlatformError): pass Loading Loading
src/edgecloud/clients/errors.py 0 → 100644 +3 −0 Original line number Diff line number Diff line class EdgeCloudPlatformError(Exception): pass
src/edgecloud/clients/i2edge/common.py +2 −1 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ import json from typing import Optional import requests from src.edgecloud.clients.errors import EdgeCloudPlatformError from pydantic import BaseModel from src import logger Loading @@ -20,7 +21,7 @@ from src import logger log = logger.get_logger(__name__) class I2EdgeError(Exception): class I2EdgeError(EdgeCloudPlatformError): pass Loading