You are here

class MissingOptionsException in Zircon Profile 8

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

Hierarchy

Expanded class hierarchy of MissingOptionsException

4 files declare their use of MissingOptionsException
Constraint.php in vendor/symfony/validator/Constraint.php
Count.php in vendor/symfony/validator/Constraints/Count.php
Length.php in vendor/symfony/validator/Constraints/Length.php
Range.php in vendor/symfony/validator/Constraints/Range.php

File

vendor/symfony/validator/Exception/MissingOptionsException.php, line 14

Namespace

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

}

Members