/webtrees/app/ |
H A D | Auth.php | 24 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 D | StatisticsChartModule.php | 23 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 D | ModuleCustomTrait.php | 24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 188 throw new HttpNotFoundException(e($file));
|
H A D | SiteMapModule.php | 29 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 281 throw new HttpNotFoundException(); 342 throw new HttpNotFoundException('Invalid record type: ' . $type);
|
H A D | ShareAnniversaryModule.php | 27 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 153 throw new HttpNotFoundException();
|
H A D | UserJournalModule.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 170 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'news_id:' . $news_id));
|
H A D | FamilyTreeNewsModule.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 168 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'news_id:' . $news_id));
|
H A D | FixSearchAndReplace.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 401 throw new HttpNotFoundException();
|
/webtrees/app/Http/RequestHandlers/ |
H A D | ModuleAction.php | 24 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 D | RegisterPage.php | 22 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 95 * @throws HttpNotFoundException 100 throw new HttpNotFoundException();
|
H A D | RegisterAction.php | 26 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 222 * @throws HttpNotFoundException 227 throw new HttpNotFoundException();
|
H A D | DeleteUser.php | 24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 60 throw new HttpNotFoundException('User ID ' . $user_id . ' not found');
|
H A D | Masquerade.php | 23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 60 throw new HttpNotFoundException('User ID ' . $user_id . ' not found');
|
H A D | AddMediaFileModal.php | 24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 66 } catch (HttpNotFoundException | HttpAccessDeniedException $ex) {
|
H A D | EditMediaFileModal.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 68 } catch (HttpNotFoundException | HttpAccessDeniedException $ex) {
|
H A D | UserEditPage.php | 23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 83 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'user_id:' . $user_id));
|
H A D | ContactAction.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 102 throw new HttpNotFoundException();
|
H A D | UserEditAction.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 92 … throw new HttpNotFoundException(I18N::translate('%s does not exist.', 'user_id:' . $user_id));
|
H A D | ManageMediaData.php | 23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 269 throw new HttpNotFoundException();
|
/webtrees/app/Services/ |
H A D | HomePageService.php | 25 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 D | ModuleActionTest.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 61 $this->expectException(HttpNotFoundException::class); 82 $this->expectException(HttpNotFoundException::class);
|
H A D | DeleteUserTest.php | 25 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 54 $this->expectException(HttpNotFoundException::class);
|
H A D | MasqueradeTest.php | 24 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 80 $this->expectException(HttpNotFoundException::class);
|
/webtrees/app/Http/Middleware/ |
H A D | NoRouteFound.php | 23 use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; alias 54 throw new HttpNotFoundException();
|
/webtrees/tests/app/Http/Exceptions/ |
H A D | HttpNotFoundExceptionTest.php | 30 self::assertTrue(class_exists(HttpNotFoundException::class));
|