MCPcopy Index your code
hub / github.com/apache/cassandra-python-driver / DependencyException

Class DependencyException

cassandra/__init__.py:732–746  ·  view source on GitHub ↗

Specific exception class for handling issues with driver dependencies

Source from the content-addressed store, hash-verified

730 pass
731
732class DependencyException(Exception):
733 """
734 Specific exception class for handling issues with driver dependencies
735 """
736
737 excs = []
738 """
739 A sequence of child exceptions
740 """
741
742 def __init__(self, msg, excs=[]):
743 complete_msg = msg
744 if excs:
745 complete_msg += ("\nThe following exceptions were observed: \n - " + '\n - '.join(str(e) for e in excs))
746 Exception.__init__(self, complete_msg)

Callers 3

cluster.pyFile · 0.90
asyncorereactor.pyFile · 0.90
libevreactor.pyFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected