Add HTTPException class files

This commit is contained in:
Hypolite Petovan
2017-11-23 23:40:54 -05:00
parent fd8b9deaaf
commit b41bf77ec8
21 changed files with 223 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace Friendica\Network\HTTPException;
use Friendica\Network\HTTPException;
class NotFoundException extends HTTPException {
var $httpcode = 404;
}