Notification.onerror - виникла помилка у сповіщенні
obNotification.onerror=function(){…}
obNotification - об'єкт Notification.
onerror подія об'єкту Notification яка виникає при виникнені помилки у сповіщенні.
if(window.Notification){
var n=new Notification('яваскрипт.укр',{body:'Notification.onerror'});
n.onerror=function(e){alert('Виникла подія Notification.onerror\n'+e);}
}else alert('Ваш браузер не підтримує Notification');