pdf2html
Version:
PDF to HTML or Text conversion using Apache Tika. Also generate PDF thumbnail using Apache PDFBox.
15 lines (13 loc) • 342 B
JavaScript
// lib/errors.js
/**
* Custom error class for PDF processing errors
*/
class PDFProcessingError extends Error {
constructor(message, command, exitCode) {
super(message);
this.name = 'PDFProcessingError';
this.command = command;
this.exitCode = exitCode;
}
}
module.exports = { PDFProcessingError };