1 31 package org.objectweb.proactive.core.node; 32 33 import org.objectweb.proactive.core.ProActiveException; 34 35 49 public class NodeException extends ProActiveException { 50 51 55 public NodeException() { 56 super(); 57 } 58 59 63 public NodeException(String s) { 64 super(s); 65 } 66 67 73 public NodeException(String s, Throwable t) { 74 super(s, t); 75 } 76 77 82 public NodeException(Throwable t) { 83 super(t); 84 } 85 } 86 87 | Popular Tags |