UNPKG

@gam-test/fetch-wrapper

Version:

A simple fetch wrapper for better error handling and less response context

11 lines (8 loc) 243 B
import { RequestException } from './RequestException.js'; type Params = { url: string; }; declare class InternalServerErrorException extends RequestException { constructor({ url }: Params); } export { InternalServerErrorException };