mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import { HttpError } from './HttpError';
|
|
/**
|
|
* An error thrown when no data was found for the requested identifier.
|
|
*/
|
|
export class NotFoundHttpError extends HttpError {
|
|
public constructor(message?: string) {
|
|
super(404, 'NotFoundHttpError', message);
|
|
}
|
|
}
|