KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > emb > MetaDataValidationException


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 during <code>MetaDataEntityLocal.setXML()</code>
11  * whenever the XML metadata validation fails.
12  *
13  * @version <tt>$Revision: 1.1 $</tt>
14  * @author <a HREF="mailto:ricardoarguello@users.sourceforge.net">Ricardo
15  * Argüello</a>
16  */

17 public class MetaDataValidationException extends MediaException
18 {
19    /**
20     * @see javax.emb.MediaException()
21     */

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

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

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

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