getExceptions() public method

public getExceptions ( ) : array | null
return array | null
Example #1
0
 /**
  * {@inheritdoc}
  */
 public function check(ExceptionControllerInterface $exceptionController)
 {
     $exceptions = $this->config->getExceptions();
     if ($exceptions === null) {
         return null;
     }
     return $exceptionController->systemCheck(Validator::CHECK_CONFIG, $exceptions);
 }