UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

10 lines (9 loc) 244 B
export default class TransformError extends Error { constructor(message) { super(); if (Error.captureStackTrace) { Error.captureStackTrace(this, TransformError); } this.message = message; } }