UNPKG

gars_v2

Version:

Geo Assistant Research System

13 lines (10 loc) 306 B
import { remote } from 'electron'; const dialog = remote.dialog; function error(title, err) { if (!(err instanceof Error)) { err = new Error(err); } dialog.showErrorBox(title || 'Unkown Error', err.message || 'no more information'); throw err; } export default error;