From ce5240e50ebdafa390da52e2c90089cd5a39391e Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Tue, 18 Jun 2019 06:45:57 +0000 Subject: [PATCH] http : Add 416 Error code 'Range Not Satisfiable' git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5370 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- http.php | 1 + 1 file changed, 1 insertion(+) diff --git a/http.php b/http.php index 2c1096f..fc8e255 100644 --- a/http.php +++ b/http.php @@ -98,6 +98,7 @@ class http case 413: $text = 'Request Entity Too Large'; break; case 414: $text = 'Request-URI Too Large'; break; case 415: $text = 'Unsupported Media Type'; break; + case 416: $text = 'Range Not Satisfiable'; break; case 500: $text = 'Internal Server Error'; break; case 501: $text = 'Not Implemented'; break; case 502: $text = 'Bad Gateway'; break;