You are here

class InvalidOptionsException in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Exception/InvalidOptionsException.php \Symfony\Component\Validator\Exception\InvalidOptionsException

Hierarchy

Expanded class hierarchy of InvalidOptionsException

1 file declares its use of InvalidOptionsException
Constraint.php in vendor/symfony/validator/Constraint.php

File

vendor/symfony/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