mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration.git
synced 2025-04-05 11:24:03 +00:00
22 lines
630 B
JavaScript
22 lines
630 B
JavaScript
class CsvError extends Error {
|
|
constructor(code, message, options, ...contexts) {
|
|
if (Array.isArray(message)) message = message.join(" ").trim();
|
|
super(message);
|
|
if (Error.captureStackTrace !== undefined) {
|
|
Error.captureStackTrace(this, CsvError);
|
|
}
|
|
this.code = code;
|
|
for (const context of contexts) {
|
|
for (const key in context) {
|
|
const value = context[key];
|
|
this[key] = Buffer.isBuffer(value)
|
|
? value.toString(options.encoding)
|
|
: value == null
|
|
? value
|
|
: JSON.parse(JSON.stringify(value));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export { CsvError };
|