KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > aspectwerkz > exception > ExpressionException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.aspectwerkz.exception;
5
6 /**
7  * Thrown when error in expression AST evaluation or creation.
8  *
9  * @author <a HREF="mailto:jboner@codehaus.org">Jonas BonŽr </a>
10  */

11 public class ExpressionException extends RuntimeException JavaDoc {
12   /**
13    * Sets the message for the exception.
14    *
15    * @param message the message
16    */

17   public ExpressionException(final String JavaDoc message) {
18     super(message);
19   }
20 }
Popular Tags