001 package org.andromda.translation.ocl.testsuite;
002
003 /**
004 * Any unchecked exception that will be thrown when an unexpected error occurs during TranslationTestDiscoverer
005 * processing.
006 */
007 public class TranslationTestDiscovererException
008 extends RuntimeException
009 {
010 private static final long serialVersionUID = 34L;
011 /**
012 * Constructs an instance of TranslationTestDiscovererException.
013 *
014 * @param th
015 */
016 public TranslationTestDiscovererException(Throwable th)
017 {
018 super(th);
019 }
020
021 /**
022 * Constructs an instance of TranslationTestDiscovererException.
023 *
024 * @param msg
025 */
026 public TranslationTestDiscovererException(String msg)
027 {
028 super(msg);
029 }
030
031 /**
032 * Constructs an instance of TranslationTestDiscovererException.
033 *
034 * @param msg
035 * @param th
036 */
037 public TranslationTestDiscovererException(String msg, Throwable th)
038 {
039 super(msg, th);
040 }
041
042 }