
[smarcet] - #5035 - Api Endpoints Administration upgrade from laravel 4.0.* to 4.1.* ** please remove your vendor folder and composer.lock and re run php composer.phar install Change-Id: Idc23e084235de4f7258d1e769228e4eba44c69f0
17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
|
|
|
|
|
|
namespace oauth2\exceptions;
|
|
|
|
use Exception;
|
|
|
|
class InvalidApiEndpoint extends Exception
|
|
{
|
|
|
|
public function __construct($message = "")
|
|
{
|
|
$message = "Invalid Api Endpoint : " . $message;
|
|
parent::__construct($message, 0, null);
|
|
}
|
|
} |