From 25b7d2aab61ae6421398d3abae5da6ffe590333d Mon Sep 17 00:00:00 2001 From: s1n Date: Sat, 28 Mar 2020 10:36:41 -0700 Subject: 3/28/2020, 10:36 --- .../library/Requests/Exception/HTTP/304.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/305.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/306.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/400.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/401.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/402.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/403.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/404.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/405.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/406.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/407.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/408.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/409.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/410.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/411.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/412.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/413.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/414.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/415.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/416.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/417.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/418.php | 29 ++++++++++++++ .../library/Requests/Exception/HTTP/428.php | 29 ++++++++++++++ .../library/Requests/Exception/HTTP/429.php | 29 ++++++++++++++ .../library/Requests/Exception/HTTP/431.php | 29 ++++++++++++++ .../library/Requests/Exception/HTTP/500.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/501.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/502.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/503.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/504.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/505.php | 27 +++++++++++++ .../library/Requests/Exception/HTTP/511.php | 29 ++++++++++++++ .../library/Requests/Exception/HTTP/Unknown.php | 44 ++++++++++++++++++++++ 33 files changed, 918 insertions(+) create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/305.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/306.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/401.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/402.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/404.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/405.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/406.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/407.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/408.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/410.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/411.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/412.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/413.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/414.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/415.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/416.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/417.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/418.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/428.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/429.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/431.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/500.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/501.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/502.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/503.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/504.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/505.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/511.php create mode 100644 includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php (limited to 'includes/vendor/rmccue/requests/library/Requests/Exception/HTTP') diff --git a/includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php b/includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php new file mode 100644 index 0000000..6799033 --- /dev/null +++ b/includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php @@ -0,0 +1,27 @@ +code = $data->status_code; + } + + parent::__construct($reason, $data); + } +} \ No newline at end of file -- cgit v1.2.3