You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/businesslogic/exception/MissingAuthenticationTokenE...

17 lines
320 B
PHP

<?php
/**
* Created by PhpStorm.
* User: mkoch
* Date: 1/28/2017
* Time: 9:55 PM
*/
namespace BusinessLogic\Exceptions;
use Exception;
class MissingAuthenticationTokenException extends Exception {
function __construct() {
parent::__construct("An 'X-Auth-Token' is required for all requests");
}
}