1 package org.andromda.translation.ocl.testsuite; 2 3 /** 4 * Any unchecked exception that will be thrown when an unexpected ContextElementFinder error occurs. 5 */ 6 public class ContextElementFinderException 7 extends RuntimeException 8 { 9 private static final long serialVersionUID = 34L; 10 /** 11 * Constructs an instance of ContextElementFinderException. 12 * 13 * @param th 14 */ 15 public ContextElementFinderException(Throwable th) 16 { 17 super(th); 18 } 19 20 /** 21 * Constructs an instance of ContextElementFinderException. 22 * 23 * @param msg 24 */ 25 public ContextElementFinderException(String msg) 26 { 27 super(msg); 28 } 29 30 /** 31 * Constructs an instance of ContextElementFinderException. 32 * 33 * @param msg 34 * @param th 35 */ 36 public ContextElementFinderException(String msg, Throwable th) 37 { 38 super(msg, th); 39 } 40 41 }