Mods-for-HESK-Netsyms/api/BusinessLogic/Exceptions/InternalUseOnlyException.php

10 lines
243 B
PHP
Raw Normal View History

2017-05-04 16:15:11 +00:00
<?php
namespace BusinessLogic\Exceptions;
class InternalUseOnlyException extends ApiFriendlyException {
function __construct() {
parent::__construct("This endpoint can only be used internally", "Internal Use Only", 401);
2017-05-04 16:15:11 +00:00
}
}