View Javadoc

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