projek3 / lib /lowdb /MissingAdapterError.js
devstok's picture
Upload folder using huggingface_hub
47ab1ce verified
raw
history blame contribute delete
178 Bytes
class MissingAdapterError extends Error {
constructor() {
super();
this.message = 'Missing Adapter';
}
}
module.exports = { MissingAdapterError };