KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > albel > tags > table > model > TableTagException


1 /*
2  * TableTagException.java
3  *
4  * Created on Antradienis, 2004, Rugsėjo 7, 10.54
5  */

6
7 package albel.tags.table.model;
8
9 /**
10  *
11  * @author alblau
12  */

13 public class TableTagException extends java.lang.Exception JavaDoc
14 {
15     
16     /**
17      * Creates a new instance of <code>TableTagException</code> without detail message.
18      */

19     public TableTagException()
20     {
21     }
22     
23     
24     /**
25      * Constructs an instance of <code>TableTagException</code> with the specified detail message.
26      * @param msg the detail message.
27      */

28     public TableTagException(String JavaDoc msg)
29     {
30         super(msg);
31     }
32     public TableTagException(Exception JavaDoc ex)
33     {
34         super(ex);
35     }
36     public TableTagException(String JavaDoc msg,Exception JavaDoc ex)
37     {
38         super(msg,ex);
39     }
40 }
41
Popular Tags