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/exception/AccessException.php

11 lines
261 B
PHP

<?php
class AccessException extends Exception {
public function __construct($code)
{
$message = '';
if ($code == 401) {
$message = 'The X-Auth-Token is invalid';
}
parent::__construct($message, $code);
}
}