* feat: add @standardnotes/encryption package * fix: mobile dependency on encryption package * fix: order of build & lint in pr workflows * fix: web dependency on encryption package * fix: remove encryption package composite configuration * fix: import order
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
export class StandardException {
|
|
constructor(public readonly message: string, log = false) {
|
|
if (log) {
|
|
console.error('StandardException raised: ', message)
|
|
}
|
|
}
|
|
}
|