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