Autarky\Errors\ErrorHandlerManager::throwFatalErrorException PHP 메소드

throwFatalErrorException() 공개 메소드

Throw a FatalErrorException if an error has occured.
public throwFatalErrorException ( ) : void
리턴 void
    public function throwFatalErrorException()
    {
        $exception = $this->makeFatalErrorException();
        if ($exception) {
            throw $exception;
        }
    }