class UndefinedMethodException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/debug/Exception/UndefinedMethodException.php \Symfony\Component\Debug\Exception\UndefinedMethodException
Undefined Method Exception.
@author Grégoire Pineau <lyrixx@lyrixx.info>
Hierarchy
- class \Symfony\Component\Debug\Exception\UndefinedMethodException extends \Symfony\Component\Debug\Exception\FatalErrorException
Expanded class hierarchy of UndefinedMethodException
1 file declares its use of UndefinedMethodException
- UndefinedMethodFatalErrorHandler.php in vendor/
symfony/ debug/ FatalErrorHandler/ UndefinedMethodFatalErrorHandler.php
File
- vendor/
symfony/ debug/ Exception/ UndefinedMethodException.php, line 19
Namespace
Symfony\Component\Debug\ExceptionView source
class UndefinedMethodException extends FatalErrorException {
public function __construct($message, \ErrorException $previous) {
parent::__construct($message, $previous
->getCode(), $previous
->getSeverity(), $previous
->getFile(), $previous
->getLine(), $previous
->getPrevious());
$this
->setTrace($previous
->getTrace());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UndefinedMethodException:: |
public | function |