1 31 package org.objectweb.proactive.core.exceptions.handler; 32 33 import org.objectweb.proactive.core.exceptions.NonFunctionalException; 34 35 36 44 public interface IHandler { 45 46 51 static public int ID_defaultLevel = 0; 52 58 static public int ID_VMLevel = 1; 59 65 static public int ID_activeObjectLevel = 2; 66 69 static public int ID_proxyLevel = 3; 70 74 static public int ID_futureLevel = 4; 75 79 static public int ID_codeLevel = 5; 80 81 85 public boolean isHandling(NonFunctionalException e); 86 87 91 public void handle(NonFunctionalException e); 92 } 93 | Popular Tags |