VMError
class VMError extends Error { /** * Create VMError instance. * * @public * @param {string} message - Error message. * @param {string} code - Error code. */ constructor(message, code) { super(message); this.name = 'VMError'; this.code = code; thisErrorCaptureStackTrace(this, this.constructor); } }