Home
last modified time | relevance | path

Searched refs:HttpServerErrorException (Results 1 – 10 of 10) sorted by relevance

/webtrees/app/Http/RequestHandlers/
H A DUpgradeWizardStep.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
153 … throw new HttpServerErrorException(I18N::translate('No upgrade information is available.'));
158 throw new HttpServerErrorException($message);
233 throw new HttpServerErrorException($exception->getMessage());
/webtrees/app/Services/
H A DUpgradeService.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
111 throw new HttpServerErrorException('Cannot read ZIP file. Is it corrupt?');
170 … throw new HttpServerErrorException(I18N::translate('The server’s time limit has been reached.'));
202 … throw new HttpServerErrorException(I18N::translate('The server’s time limit has been reached.'));
/webtrees/tests/app/Http/RequestHandlers/
H A DUpgradeWizardStepTest.php26 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
76 $this->expectException(HttpServerErrorException::class);
92 $this->expectException(HttpServerErrorException::class);
181 $this->expectException(HttpServerErrorException::class);
/webtrees/tests/app/Http/Middleware/
H A DHandleExceptionsTest.php23 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
43 $handler->method('handle')->willThrowException(new HttpServerErrorException('eek'));
/webtrees/app/Module/
H A DHereMaps.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
80 throw new HttpServerErrorException($message);
H A DBingMaps.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
121 throw new HttpServerErrorException($message);
H A DGoogleMaps.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
121 throw new HttpServerErrorException($message);
H A DMapBox.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpServerErrorException; alias
80 throw new HttpServerErrorException($message);
/webtrees/app/Http/Exceptions/
H A DHttpServerErrorException.php27 class HttpServerErrorException extends HttpException class
/webtrees/tests/app/Http/Exceptions/
H A DHttpServerErrorExceptionTest.php30 self::assertTrue(class_exists(HttpServerErrorException::class));