UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

19 lines (18 loc) 582 B
import { Exception } from "../error.ts"; /** * This error indicates that the filename is too long to be resolved by the file * system. * * NOTE: This error has an HTTP-compatible code of `414`. */ export declare class FilenameTooLongError extends Exception { constructor(message: string, options?: ErrorOptions); } /** * This error indicates that the archive is corrupted or invalid. * * NOTE: This error has an HTTP-compatible code of `400`. */ export declare class CorruptedArchiveError extends Exception { constructor(message: string, options?: ErrorOptions); }