@chatopera/store
Version:
Chatopera Store 是证书商店,快速接入代码实现软件的计费、发票、证书管理。https://store.chatopera.com
18 lines (15 loc) • 514 B
JavaScript
/**
* Parse Conversation Script getting error, probably wrong syntax in script
* @param {[type]} message [description]
*/
function StoreValueError(message) {
this.message = message;
// Use V8's native method
Error.captureStackTrace(this, StoreValueError);
}
StoreValueError.prototype = Object.create(Error.prototype);
StoreValueError.prototype.name = "StoreValueError";
StoreValueError.prototype.constructor = StoreValueError;
exports = module.exports = {
StoreValueError,
};