KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > MediaFormatException


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 in dealing with a media
11  * format. Usually, this exception is not thrown directly. Instead, instances
12  * of its subclasses are thrown to indicate a more specific reason for the
13  * problem.
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 MediaFormatException extends MediaException
20 {
21    /**
22     * @see javax.emb.MediaException()
23     */

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

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

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

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