1 package org.sourceforge.jemm.weaver.analysis;
2
3 import org.sourceforge.jemm.weaver.CompilerException;
4
5 /**
6 * Thrown when the dependent Transformations can not be found.
7 *
8 * @author <a href="mailto:csuml@yahoo.co.uk">Paul Keeble</a>
9 */
10 public class InvalidDependencyTreeException extends CompilerException {
11 private static final long serialVersionUID = 1L;
12
13 /**
14 * Constructs a new InvalidDependencyTreeException with the specified detail message and cause.
15 * @param message The detail message.
16 * @param cause The cause.
17 */
18 public InvalidDependencyTreeException(String message, Throwable cause) {
19 super(message, cause);
20 }
21
22 /**
23 * Constructs a new InvalidDependencyTreeException with the specified detail message.
24 * @param message The detail message.
25 */
26 public InvalidDependencyTreeException(String message) {
27 super(message);
28 }
29 }