x249/node-api

View on GitHub
lib/utils/httpErrors/HTTP404Error.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { HTTPClientError } from './httpClientError';

export class HTTP404Error extends HTTPClientError {
    public readonly statusCode: number = 404;

    constructor(message: string | object = 'Server Error') {
        super(message);
    }
}