class MissingOptionsException in Plug 7
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 lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Constraint.php - Count.php in lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Constraints/ Count.php - Length.php in lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Constraints/ Length.php - Range.php in lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Constraints/ Range.php
File
- lib/
Symfony/ validator/ Symfony/ Component/ 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 |