/**
  * Constructs the code and message of this Exception based on Insulin
  * Exception.
  *
  * @param type $feature
  *   The feature disabled.
  * @param type $module
  *   The module that should support that feature.
  */
 public function __construct($feature, $module)
 {
     parent::__construct(array($feature, $module));
 }
Exemplo n.º 2
0
 /**
  * @param mixed $origDate
  */
 public function __construct($origDate, Exception $previous)
 {
     parent::__construct(array($origDate), $previous);
 }