UNPKG

contentfully

Version:

A simple but performant REST client for Contentful.

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