aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron/exception.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-09-14 11:03:28 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-14 11:03:28 +0200
commit087113d8a1214ba4c7df03bfe66747d8d944280c (patch)
tree4d853a03057138dfa845cd6a7d91ccf63565a1a6 /src/electron/exception.ts
parentchore: codebase improvements (#1930) (diff)
downloadferdium-app-087113d8a1214ba4c7df03bfe66747d8d944280c.tar.gz
ferdium-app-087113d8a1214ba4c7df03bfe66747d8d944280c.tar.zst
ferdium-app-087113d8a1214ba4c7df03bfe66747d8d944280c.zip
chore: convert JS to TS (#1934)
Diffstat (limited to 'src/electron/exception.ts')
-rw-r--r--src/electron/exception.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/electron/exception.ts b/src/electron/exception.ts
new file mode 100644
index 000000000..0065e2604
--- /dev/null
+++ b/src/electron/exception.ts
@@ -0,0 +1,4 @@
1process.on('uncaughtException', (err) => {
2 // handle the error safely
3 console.error(err);
4});