class InvalidOptionsException

Hierarchy

Expanded class hierarchy of InvalidOptionsException

1 file declares its use of InvalidOptionsException
Constraint.php in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraint.php

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Exception/InvalidOptionsException.php, line 14

Namespace

Symfony\Component\Validator\Exception
View source
class InvalidOptionsException extends ValidatorException {
  private $options;
  public function __construct($message, array $options) {
    parent::__construct($message);
    $this->options = $options;
  }
  public function getOptions() {
    return $this->options;
  }

}

Members