UNPKG

contentfully

Version:

A simple but performant REST client for Contentful.

11 lines (7 loc) 225 B
import {ContentfulError} from "./ContentfulError"; export class NotFoundError extends ContentfulError<NotFoundError> { constructor(message: string) { // call base super(message, NotFoundError); } }