KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > sync > SyncBusyException


1 package de.webman.sync;
2
3 import java.io.PrintStream JavaDoc;
4 import java.io.PrintWriter JavaDoc;
5
6
7 /**
8  * This exception indicates that a synchronization cycle is still busy.
9  *
10  * @author <a HREF="mailto:gregor@webman.de">Gregor Klinke</a>
11  * @version $Revision: 1.2 $
12  **/

13 public class SyncBusyException
14     extends SyncException
15 {
16     /**
17      * constructor
18      */

19     public SyncBusyException () {
20         super();
21     }
22
23     /**
24      * constructor with explicite error message
25      **/

26     public SyncBusyException (String JavaDoc s) {
27         super(s);
28     }
29     
30     /**
31      * constructor with base exception
32      **/

33     public SyncBusyException (Exception JavaDoc _cause) {
34         super(_cause);
35     }
36 }
37
Popular Tags