KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > FormatAlreadyBoundException


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 bound to the
11  * media format registry because another media format instance is already bound
12  * for the file extension specified.
13  *
14  * @version <tt>$Revision: 1.3 $</tt>
15  * @author <a HREF="mailto:ricardoarguello@users.sourceforge.net">Ricardo
16  * Argüello</a>
17  */

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

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

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

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

47    public FormatAlreadyBoundException(Throwable cause)
48    {
49       super(cause);
50    }
51 }
Popular Tags