Home
last modified time | relevance | path

Searched refs:SQLite3Error (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/ext/wasm/
H A Ddemo-123.js192 throw new sqlite3.SQLite3Error("Demonstrating transaction() rollback");
195 if(e instanceof sqlite3.SQLite3Error){
216 throw new sqlite3.SQLite3Error("Demonstrating nested savepoint() rollback");
220 if(e instanceof sqlite3.SQLite3Error){
H A Dtester1.js359 try{ throw new sqlite3.SQLite3Error(capi.SQLITE_SCHEMA) }
361 try{ sqlite3.SQLite3Error.toss(capi.SQLITE_CORRUPT,{cause: true}) }
1321 T.assert(e instanceof sqlite3.SQLite3Error)
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-prologue.js222 class SQLite3Error extends Error { class
260 SQLite3Error.toss = (...args)=>{
261 throw new SQLite3Error(...args);
263 const toss3 = SQLite3Error.toss;
1454 SQLite3Error: SQLite3Error, property
H A Dsqlite3-api-worker1.js472 if(rc) sqlite3.SQLite3Error.toss(rc);
474 throw new sqlite3.SQLite3Error(
H A Dsqlite3-api-glue.js22 const toss3 = sqlite3.SQLite3Error.toss;
H A Dsqlite3-api-oo1.js19 const toss3 = (...args)=>{throw new sqlite3.SQLite3Error(...args)};