/**
  * Constructs a new ezcExecutionWrongClassException.
  *
  * @param string $callbackClassName
  * @return void
  */
 function __construct($callbackClassName)
 {
     parent::__construct("The class '{$callbackClassName}' does not implement the 'ezcExecutionErrorHandler' interface.");
 }
 /**
  * Constructs a new ezcExecutionAlreadyInitializedException.
  *
  * @return void
  */
 function __construct()
 {
     parent::__construct("The Execution mechanism is already initialized.");
 }
Exemple #3
0
 /**
  * Constructs a new ezcExecutionInvalidCallbackException.
  *
  * @param string $callbackClassName
  * @return void
  */
 function __construct($callbackClassName)
 {
     parent::__construct("Class '{$callbackClassName}' does not exist.");
 }
 /**
  * Constructs a new ezcExecutionNotInitializedException.
  *
  * @return void
  */
 function __construct()
 {
     parent::__construct("The Execution mechanism was not initialized.");
 }