KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > command > NoSuchAttachmentException


1 /***************************************
2  * *
3  * Nukes: The OpenSource CMS *
4  * *
5  * Distributable under GPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.portal.common.command;
10
11 /**
12  * Signal that an attachment cannot be found.
13  *
14  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
15  * @version $Revision: 1.1.1.1 $
16  */

17 public class NoSuchAttachmentException extends RuntimeException JavaDoc
18 {
19
20    public NoSuchAttachmentException()
21    {
22    }
23
24    public NoSuchAttachmentException(String JavaDoc message)
25    {
26       super(message);
27    }
28
29    public NoSuchAttachmentException(String JavaDoc message, Throwable JavaDoc cause)
30    {
31       super(message, cause);
32    }
33
34    public NoSuchAttachmentException(Throwable JavaDoc cause)
35    {
36       super(cause);
37    }
38 }
39
Popular Tags