KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > ContentAccessException


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 access to media content fails, be it
11  * because a file is not found, there's missing access rights to a file or
12  * subsystem, a subsystem or file is temporarily blocked for access, or content
13  * transmission fails.
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 ContentAccessException extends MediaException
20 {
21    /**
22     * @see javax.emb.MediaException()
23     */

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

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

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

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