Skip to content

Commit

Permalink
Merge branch 'PM-11764-implement-account-switching-and-sdk-initializa…
Browse files Browse the repository at this point in the history
…tion' into km/pm-12400/private-key-regen
  • Loading branch information
Thomas-Avery authored Oct 11, 2024
2 parents ac0059b + 5ee793a commit 0997cd9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/bitwarden-wasm-internal/src/error.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
* @param {string} message - Error message.
* @extends Error
*/
export class WasmError extends Error {
class WasmError extends Error {
constructor(message) {
super(message);
this.name = "WasmError";
}
}

exports.WasmError = WasmError;

0 comments on commit 0997cd9

Please sign in to comment.