exseed/exseed

View on GitHub
src/classes/PageNotFound.js

Summary

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

export default class PageNotFound extends Err {
  constructor(props) {
    super(props, {
      title: 'Page not found',
      message: 'The url you are requesting does not exist',
      status: 404,
    });
  }
};