@aws-lambda-powertools/parser
Version:
The parser package for the Powertools for AWS Lambda (TypeScript) library.
9 lines • 322 B
TypeScript
/**
* Custom parsing error that wraps any erros thrown during schema or envelope parsing.
* The cause of the error is included in the message, if possible.
*/
declare class ParseError extends Error {
constructor(message: string, options?: ErrorOptions);
}
export { ParseError };
//# sourceMappingURL=errors.d.ts.map