UNPKG

contentfully

Version:

A simple but performant REST client for Contentful.

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