1 23 package org.objectweb.clif.scenario.util.isac.exception; 24 25 31 public class IsacRuntimeException extends RuntimeException { 32 private static final String msg = "Isac get a runtime exception : " ; 33 34 38 public IsacRuntimeException(String cause) { 39 super(msg + cause) ; 41 } 42 43 48 public IsacRuntimeException(String cause, Exception e) { 49 super(cause,e); 51 } 52 } 53 | Popular Tags |