KickJava   Java API By Example, From Geeks To Geeks.

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


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 no aspectwerkz definition file or class could be found.
8  *
9  * @author <a HREF="mailto:jboner@codehaus.org">Jonas BonŽr </a>
10  */

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

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