1 31 package org.objectweb.proactive.core.exceptions.handler; 32 33 import java.io.Serializable ; 34 35 import org.objectweb.proactive.core.exceptions.NonFunctionalException; 36 37 45 public class HandlerNonFunctionalException implements IHandler, Serializable { 46 47 48 52 public boolean isHandling(NonFunctionalException e) { 53 return (e instanceof NonFunctionalException); 54 } 55 56 60 public void handle(NonFunctionalException e) { 61 System.out.println("*** " + this.getClass().getName() + " HANDLE " + e.getDescription()); 62 } 63 } 64 | Popular Tags |