Mods-for-HESK-Netsyms/api/BusinessLogic/Exceptions/SessionNotActiveException.php
2017-05-04 16:15:11 +00:00

16 lines
343 B
PHP

<?php
/**
* Created by PhpStorm.
* User: cokoch
* Date: 5/2/2017
* Time: 12:28 PM
*/
namespace BusinessLogic\Exceptions;
class SessionNotActiveException extends ApiFriendlyException {
function __construct() {
parent::__construct("You must be logged in to call internal API methods", "Authentication Required", 401);
}
}