KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > VersionChainIntegrityException


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 if there is a problem altering a media entity
11  * previous version association.
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 VersionChainIntegrityException extends MediaException
18 {
19    /**
20     * @see javax.emb.MediaException()
21     */

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

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

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

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