MCPcopy Create free account
hub / github.com/apache/cassandra-python-driver / FunctionFailure

Class FunctionFailure

cassandra/__init__.py:599–623  ·  view source on GitHub ↗

User Defined Function failed during execution

Source from the content-addressed store, hash-verified

597
598
599class FunctionFailure(RequestExecutionException):
600 """
601 User Defined Function failed during execution
602 """
603
604 keyspace = None
605 """
606 Keyspace of the function
607 """
608
609 function = None
610 """
611 Name of the function
612 """
613
614 arg_types = None
615 """
616 List of argument type names of the function
617 """
618
619 def __init__(self, summary_message, keyspace, function, arg_types):
620 self.keyspace = keyspace
621 self.function = function
622 self.arg_types = arg_types
623 Exception.__init__(self, summary_message)
624
625
626class RequestValidationException(DriverException):

Callers 1

to_exceptionMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected