class InvalidOptionsException 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\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 lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Constraint.php
File
- lib/
Symfony/ validator/ Symfony/ Component/ 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 |