Files
claude_code_src/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js
jiancheng 8776fff897 init
Signed-off-by: jiancheng <1729303158@qq.com>
2026-03-31 21:14:17 +08:00

21 lines
463 B
JavaScript

// Generated by CoffeeScript 2.4.1
(function() {
// Represents the error handler for DOM operations
var XMLDOMErrorHandler;
module.exports = XMLDOMErrorHandler = class XMLDOMErrorHandler {
// Initializes a new instance of `XMLDOMErrorHandler`
constructor() {}
// Called on the error handler when an error occurs.
// `error` the error message as a string
handleError(error) {
throw new Error(error);
}
};
}).call(this);