1
0
mirror of https://github.com/PurpleI2P/i2pdbrowser synced 2025-01-15 00:59:57 +00:00

11 lines
238 B
JavaScript
Raw Normal View History

const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
var EXPORTED_SYMBOLS = ["errorCritical"];
Components.utils.import("resource://gre/modules/Services.jsm");
function errorCritical(e)
{
Services.prompt.alert(null, "", e);
}