KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > FormatNotFoundException


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 media format cannot be determined.
11  * Usually the media format registry throws this exception.
12  *
13  * @version <tt>$Revision: 1.3 $</tt>
14  * @author <a HREF="mailto:ricardoarguello@users.sourceforge.net">Ricardo
15  * Argüello</a>
16  */

17 public class FormatNotFoundException extends MediaFormatException
18 {
19    /**
20     * @see javax.emb.MediaFormatException()
21     */

22    public FormatNotFoundException()
23    {
24       super();
25    }
26
27    /**
28     * @see javax.emb.MediaFormatException(String)
29     */

30    public FormatNotFoundException(String message)
31    {
32       super(message);
33    }
34
35    /**
36     * @see javax.emb.MediaFormatException(String, Throwable)
37     */

38    public FormatNotFoundException(String message, Throwable cause)
39    {
40       super(message, cause);
41    }
42
43    /**
44     * @see javax.emb.MediaFormatException(Throwable)
45     */

46    public FormatNotFoundException(Throwable cause)
47    {
48       super(cause);
49    }
50 }
Popular Tags