UNPKG

@gam-test/fetch-wrapper

Version:

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

12 lines (9 loc) 262 B
import { RequestException } from './RequestException.js'; type Params = { url: string; responseBody: unknown; }; declare class NotFoundException extends RequestException { constructor({ url, responseBody }: Params); } export { NotFoundException };