betty2 / lib /errors /error.js
sdgsdggds's picture
Upload folder using huggingface_hub
e7c953d verified
'use strict';
function DubAPIError(message) {
Error.captureStackTrace(this);
this.name = 'DubAPIError';
this.message = message || '';
}
DubAPIError.prototype = Object.create(Error.prototype);
module.exports = DubAPIError;