5 UTC">3 年 前 ms-default-filters.php 92ae4370cd config 3 年 前 ms-deprecated.php 92ae4370cd config 3 年 前 ms-files.php 92ae4370cd config 3 年 前 ms-functions.php 92ae4370cd config 3 年 前 ms-load.php 92ae4370cd config 3 年 前 ms-network.php 92ae4370cd config 3 年 前 ms-settings.php d01d7cf85d first commit 4 年 前 ms-site.php 92ae4370cd config 3 年 前 nav-menu-template.php 92ae4370cd config 3 年 前 nav-menu.php 92ae4370cd config 3 年 前 option.php 92ae4370cd config 3 年 前 pluggable-deprecated.php d01d7cf85d first commit 4 年 前 pluggable.php 92ae4370cd config 3 年 前 plugin.php 92ae4370cd config 3 年 前 post-formats.php d01d7cf85d first commit 4 年 前 post-template.php 92ae4370cd config 3 年 前 post-thumbnail-template.php 92ae4370cd config 3 年 前 post.php 92ae4370cd config 3 年 前 query.php d01d7cf85d first commit 4 年 前 registration-functions.php d01d7cf85d first commit 4 年 前 registration.php d01d7cf85d first commit 4 年 前 rest-api.php 92ae4370cd config 3 年 前 revision.php 92ae4370cd config 3 年 前 rewrite.php 92ae4370cd config 3 年 前 robots-template.php 92ae4370cd config 3 年 前 rss-functions.php d01d7cf85d first commit 4 年 前 rss.php 92ae4370cd config 3 年 前 script-loader.php 92ae4370cd config 3 年 前 session.php d01d7cf85d first commit 4 年 前 shortcodes.php d01d7cf85d first commit 4 年 前 sitemaps.php d01d7cf85d first commit 4 年 前 spl-autoload-compat.php d01d7cf85d first commit 4 年 前 taxonomy.php 92ae4370cd config 3 年 前 template-canvas.php 92ae4370cd config 3 年 前 template-loader.php d01d7cf85d first commit 4 年 前 template.php d01d7cf85d first commit 4 年 前 theme-i18n.json 92ae4370cd config 3 年 前 theme-templates.php 92ae4370cd config 3 年 前 theme.json 92ae4370cd config 3 年 前 theme.php 92ae4370cd config 3 年 前 update.php 92ae4370cd config 3 年 前 user.php 92ae4370cd config 3 年 前 vars.php 92ae4370cd config 3 年 前 version.php 92ae4370cd config 3 年 前 widgets.php 92ae4370cd config 3 年 前 wlwmanifest.xml d01d7cf85d first commit 4 年 前 wp-db.php 92ae4370cd config 3 年 前 wp-diff.php d01d7cf85d first commit 4 年 前 tum/whitesports - Gogs: Simplico Git Service

Нет описания

404.php 382B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Exception for 404 Not Found responses
  4. *
  5. * @package Requests
  6. */
  7. /**
  8. * Exception for 404 Not Found responses
  9. *
  10. * @package Requests
  11. */
  12. class Requests_Exception_HTTP_404 extends Requests_Exception_HTTP {
  13. /**
  14. * HTTP status code
  15. *
  16. * @var integer
  17. */
  18. protected $code = 404;
  19. /**
  20. * Reason phrase
  21. *
  22. * @var string
  23. */
  24. protected $reason = 'Not Found';
  25. }