KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > contineo > setup > UpdateException


1 /*
2  * UpdateException.java
3  *
4  * Created on 6. Februar 2004, 13:11
5  */

6
7 package org.contineo.setup;
8
9 /**
10  *
11  * @author Michael Scholz
12  */

13 public class UpdateException extends java.lang.Exception JavaDoc {
14     
15     private static final long serialVersionUID = 1L;
16
17
18     /**
19      * Creates a new instance of <code>UpdateException</code> without detail message.
20      */

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

29     public UpdateException(String JavaDoc msg) {
30         super(msg);
31     }
32 }
33
Popular Tags