Island: Add RetrievalError

This commit is contained in:
Mike Salvatore 2022-06-17 12:13:18 -04:00
parent 73ead3bb26
commit 30065952a5
2 changed files with 3 additions and 0 deletions

View File

@ -3,3 +3,4 @@ from .i_agent_binary_repository import IAgentBinaryRepository, AgentRetrievalErr
from .agent_binary_repository import AgentBinaryRepository
from .i_agent_configuration_repository import IAgentConfigurationRepository
from .file_agent_configuration_repository import FileAgentConfigurationRepository
from .errors import RetrievalError

View File

@ -0,0 +1,2 @@
class RetrievalError(RuntimeError):
pass