1 package org.ocltf.test;
2
3
4 /***
5 * Any unchecked exception that will be thrown when an unexprected
6 * translator test exception occurs. Should be thrown when a test
7 * is not co.ocltf.gured correctly.
8 */
9 public class TranslationTestProcessorException extends RuntimeException {
10
11 /***
12 * Constructs an instance .ocltf.TranslationTestProcessorException.
13 *
14 * @param th
15 */
16 public TranslationTestProcessorException(Throwable th){
17 super(th);
18 }
19
20 /***
21 * Constructs an instance .ocltf.TranslationTestProcessorException.
22 *
23 * @param msg
24 */
25 public TranslationTestProcessorException(String msg) {
26 super(msg);
27 }
28
29 /***
30 * Constructs an instance .ocltf.TranslationTestProcessorException.
31 *
32 * @param msg
33 * @param th
34 */
35 public TranslationTestProcessorException(String msg, Throwable th) {
36 super(msg, th);
37 }
38
39 }