KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > ListenerVetoException


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 extends javax.emb.MediaException and is thrown by Media
11  * entity listener EJBs in order to issue a veto against a media entity EJB
12  * modification.
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 ListenerVetoException extends MediaException
19 {
20    /**
21     * @see javax.emb.MediaException()
22     */

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

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

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

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