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