class MultipleActivityException extends CRM_Core_Exception

Class MultipleActivityException

Methods

__construct(string $message, int $error_code, array $errorData = array(), null $previous = NULL)

Class constructor.

string
__toString()

Custom string representation of object.

mixed
getErrorCode()

Get error code.

array
getErrorData()

Return specific error information.

Details

in CRM_Core_Exception at line 51
__construct(string $message, int $error_code, array $errorData = array(), null $previous = NULL)

Class constructor.

Parameters

string $message
int $error_code
array $errorData
null $previous

in CRM_Core_Exception at line 61
string __toString()

Custom string representation of object.

Return Value

string

in CRM_Core_Exception at line 70
mixed getErrorCode()

Get error code.

Return Value

mixed

in CRM_Core_Exception at line 89
array getErrorData()

Return specific error information.

(Can be used for more detailed error messages or translation.)

This method may be overridden in child exception classes in order to add functionality not present in PEAR_Exception and is a placeholder to define API

The returned array must be an associative array of parameter => value like so:

array('name' => $name, 'context' => array(...))

Return Value

array