Source code for hutch.security.jupiterone.exceptions
"""Provides JupiterOne related exceptions."""
[docs]class JupiterOneException(Exception):
"""A generic JupiterOne exception.
All exceptions should inherit from this to allow for hierarchical handling.
"""
[docs]class QueryTimeout(JupiterOneException):
"""Indicates that a tiemout was reached and the query incomplete."""
pass
[docs]class QueryException(JupiterOneException):
"""Indicates an error occurred during a query."""
pass