class MissingOptionsException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Exception/MissingOptionsException.php \Symfony\Component\Validator\Exception\MissingOptionsException
Hierarchy
- class \Symfony\Component\Validator\Exception\RuntimeException implements ExceptionInterface
- class \Symfony\Component\Validator\Exception\RuntimeException implements ExceptionInterface
- class \Symfony\Component\Validator\Exception\ValidatorException
- class \Symfony\Component\Validator\Exception\MissingOptionsException
- class \Symfony\Component\Validator\Exception\ValidatorException
- class \Symfony\Component\Validator\Exception\RuntimeException implements ExceptionInterface
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\ExceptionView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MissingOptionsException:: |
private | property | ||
MissingOptionsException:: |
public | function | ||
MissingOptionsException:: |
public | function |