1 31 package org.objectweb.proactive.core.exceptions.group; 32 33 import org.objectweb.proactive.core.exceptions.NonFunctionalException; 34 35 43 public class ProActiveGroupException extends NonFunctionalException { 44 45 51 public ProActiveGroupException(String s, Throwable ex) { 52 super(s, ex); 53 description = description + "= Group -> "; 54 } 55 56 61 public ProActiveGroupException(Throwable ex) { 62 super(ex); 63 description = description + "= Group -> "; 64 } 65 } 66 | Popular Tags |