CRM_Extension_Exception_DependencyException
class CRM_Extension_Exception_DependencyException extends CRM_Extension_Exception
An extension management operation failed because it would break a dependency.
Methods
__construct(string $message, int $error_code = 0, array $errorData = [], null $previous = NULL)
Class constructor.
from CRM_Core_Exception
Details
in CRM_Core_Exception at line 51
__construct(string $message, int $error_code = 0, array $errorData = [], null $previous = NULL)
Class constructor.
in CRM_Core_Exception at line 61
string
__toString()
Custom string representation of object.
in CRM_Core_Exception at line 70
mixed
getErrorCode()
Get error code.
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(...))