Base class for all LVE errors. Catch this to handle any error from the SDK.
try { await openLveFile(bytes, { credentials });} catch (err) { if (err instanceof LveError) console.error("LVE:", err.message); else throw err;} Copy
try { await openLveFile(bytes, { credentials });} catch (err) { if (err instanceof LveError) console.error("LVE:", err.message); else throw err;}
Static
Indicates whether the argument provided is a built-in Error instance or not.
Optional
Base class for all LVE errors. Catch this to handle any error from the SDK.
Example