User Defined Function failed during execution
| 597 | |
| 598 | |
| 599 | class 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 | |
| 626 | class RequestValidationException(DriverException): |