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