1 package org.ocltf.utils; 2 3 4 /*** 5 * Any unchecked exception that will be thrown during 6 * the execution of XmiUtils. 7 */ 8 public class XmiUtilsException extends RuntimeException { 9 10 /*** 11 * Constructs an instance of XmiUtilsException. 12 * 13 * @param th 14 */ 15 public XmiUtilsException(Throwable th){ 16 super(th); 17 } 18 19 /*** 20 * Constructs an instance of XmiUtilsException. 21 * 22 * @param msg 23 */ 24 public XmiUtilsException(String msg) { 25 super(msg); 26 } 27 28 /*** 29 * Constructs an instance of XmiUtilsException. 30 * 31 * @param msg 32 * @param th 33 */ 34 public XmiUtilsException(String msg, Throwable th) { 35 super(msg, th); 36 } 37 38 }