Home
last modified time | relevance | path

Searched refs:HttpNotFoundException (Results 1 – 25 of 100) sorted by relevance

1234

/webtrees/app/
H A DAuth.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
221 * @throws HttpNotFoundException
229 throw new HttpNotFoundException($message);
250 * @throws HttpNotFoundException
258 throw new HttpNotFoundException($message);
280 * @throws HttpNotFoundException
288 throw new HttpNotFoundException($message);
313 * @throws HttpNotFoundException
321 throw new HttpNotFoundException($message);
342 * @throws HttpNotFoundException
[all …]
/webtrees/app/Module/
H A DStatisticsChartModule.php23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
283 throw new HttpNotFoundException();
314 throw new HttpNotFoundException();
332 throw new HttpNotFoundException();
363 throw new HttpNotFoundException();
381 throw new HttpNotFoundException();
405 throw new HttpNotFoundException();
423 throw new HttpNotFoundException();
454 throw new HttpNotFoundException();
472 throw new HttpNotFoundException();
[all …]
H A DModuleCustomTrait.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
188 throw new HttpNotFoundException(e($file));
H A DSiteMapModule.php29 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
281 throw new HttpNotFoundException();
342 throw new HttpNotFoundException('Invalid record type: ' . $type);
H A DShareAnniversaryModule.php27 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
153 throw new HttpNotFoundException();
H A DUserJournalModule.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
170 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'news_id:' . $news_id));
H A DFamilyTreeNewsModule.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
168 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'news_id:' . $news_id));
H A DFixSearchAndReplace.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
401 throw new HttpNotFoundException();
/webtrees/app/Http/RequestHandlers/
H A DModuleAction.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
69 throw new HttpNotFoundException('Module ' . $module_name . ' does not exist');
82 … throw new HttpNotFoundException('Method ' . $method . '() not found in ' . $module_name);
H A DRegisterPage.php22 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
95 * @throws HttpNotFoundException
100 throw new HttpNotFoundException();
H A DRegisterAction.php26 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
222 * @throws HttpNotFoundException
227 throw new HttpNotFoundException();
H A DDeleteUser.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
60 throw new HttpNotFoundException('User ID ' . $user_id . ' not found');
H A DMasquerade.php23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
60 throw new HttpNotFoundException('User ID ' . $user_id . ' not found');
H A DAddMediaFileModal.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
66 } catch (HttpNotFoundException | HttpAccessDeniedException $ex) {
H A DEditMediaFileModal.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
68 } catch (HttpNotFoundException | HttpAccessDeniedException $ex) {
H A DUserEditPage.php23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
83 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'user_id:' . $user_id));
H A DContactAction.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
102 throw new HttpNotFoundException();
H A DUserEditAction.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
92 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'user_id:' . $user_id));
H A DManageMediaData.php23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
269 throw new HttpNotFoundException();
/webtrees/app/Services/
H A DHomePageService.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
77 throw new HttpNotFoundException();
106 throw new HttpNotFoundException();
131 throw new HttpNotFoundException('Block not found');
/webtrees/tests/app/Http/RequestHandlers/
H A DModuleActionTest.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
61 $this->expectException(HttpNotFoundException::class);
82 $this->expectException(HttpNotFoundException::class);
H A DDeleteUserTest.php25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
54 $this->expectException(HttpNotFoundException::class);
H A DMasqueradeTest.php24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
80 $this->expectException(HttpNotFoundException::class);
/webtrees/app/Http/Middleware/
H A DNoRouteFound.php23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias
54 throw new HttpNotFoundException();
/webtrees/tests/app/Http/Exceptions/
H A DHttpNotFoundExceptionTest.php30 self::assertTrue(class_exists(HttpNotFoundException::class));

1234