1 31 package org.objectweb.proactive.core.exceptions.handler; 32 33 import org.objectweb.proactive.core.ProActiveException; 34 35 43 public class HandlerProActiveException implements HandlerInterface { 44 45 46 49 public boolean isHandling(ProActiveException e) { 50 if (e instanceof ProActiveException) 51 return true; 52 else 53 return false; 54 } 55 56 59 public void handle(ProActiveException e) { 60 61 System.out.println("*** Handle ProActive Exception ***"); 62 e.printStackTrace(); 63 } 64 } 65 | Popular Tags |