KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > LinkTranslationException


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license. See terms of license at gnu.org.
5  */

6
7 package javax.emb;
8
9 /**
10  * This exception is thrown whenever a problem occurs translating a child link
11  * contained in non-embedded media content into a location URL or vice versa,
12  * for example because a relative filename is present when only absolute links
13  * are allowed.
14  *
15  * @version <tt>$Revision: 1.3 $</tt>
16  * @author <a HREF="mailto:ricardoarguello@users.sourceforge.net">Ricardo
17  * Argüello</a>
18  */

19 public class LinkTranslationException extends MediaException
20 {
21    /**
22     * @see javax.emb.MediaException()
23     */

24    public LinkTranslationException()
25    {
26       super();
27    }
28
29    /**
30     * @see javax.emb.MediaException(String)
31     */

32    public LinkTranslationException(String message)
33    {
34       super(message);
35    }
36
37    /**
38     * @see javax.emb.MediaException(String, Throwable)
39     */

40    public LinkTranslationException(String message, Throwable cause)
41    {
42       super(message, cause);
43    }
44
45    /**
46     * @see javax.emb.MediaException(Throwable)
47     */

48    public LinkTranslationException(Throwable cause)
49    {
50       super(cause);
51    }
52 }
Popular Tags