View Javadoc

1   package org.sourceforge.jemm.weaver;
2   
3   import org.sourceforge.jemm.BaseException;
4   
5   /**
6    * Thrown if the Compiler is having a problem with the class
7    * 
8    * @author <a href="mailto:csuml@yahoo.co.uk">Paul Keeble</a>
9    * 
10   */
11  public class CompilerException extends BaseException {
12  
13      private static final long serialVersionUID = 1L;
14  
15      /**
16       * Compiler exception giving an error message and underlying exception.
17       * @param message The error message.
18       * @param throwable The underlying exception.
19       */
20      public CompilerException(String message, Throwable throwable) {
21          super(message, throwable);
22      }
23  
24      /**
25       * Compiler exception giving an error message.
26       * @param message The error message.
27       */
28      public CompilerException(String message) {
29          super(message);
30      }
31  
32  }