mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
19 lines
453 B
PHP
19 lines
453 B
PHP
<?php
|
|
|
|
namespace Xentral\Modules\Api\Exception;
|
|
|
|
use Throwable;
|
|
use Xentral\Modules\Api\Http\Exception\HttpException;
|
|
use Xentral\Modules\Api\Error\ApiError;
|
|
|
|
class ResourceNotFoundException extends HttpException
|
|
{
|
|
public function __construct(
|
|
$message = 'Resource not found',
|
|
$code = ApiError::CODE_RESOURCE_NOT_FOUND,
|
|
Throwable $previous = null
|
|
) {
|
|
parent::__construct(404, $message, $code, $previous);
|
|
}
|
|
}
|