Add 500 status code

[PREMIUM-38]
This commit is contained in:
Pavel Dohnal
2017-09-27 10:18:13 +01:00
parent 1c97b004ca
commit fa9ef6e5bd

View File

@ -9,6 +9,7 @@ abstract class Response {
const STATUS_UNAUTHORIZED = 401; const STATUS_UNAUTHORIZED = 401;
const STATUS_FORBIDDEN = 403; const STATUS_FORBIDDEN = 403;
const STATUS_NOT_FOUND = 404; const STATUS_NOT_FOUND = 404;
const STATUS_UNKNOWN = 500;
public $status; public $status;
public $meta; public $meta;