Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
package com.erggroup.buildtool.daemon;
2
//
3
//  This exception can be thrown by various parts of the build system to indicate that the current build cycle
4
//  should be abandoned.
5
//
6
//  Used to indicate problems such as:
7
//      Daemon paused
8
//      Indefinite pause
9
//      Daemon de-configured
10
//      Daemon stopped
11
//
12
 
13
public class ShouldNotContinueExpection extends Exception {
14
 
15
    public ShouldNotContinueExpection(String string) {
16
        super(string);
17
    }
18
 
19
    /**This disables a compiler warning
20
     * It was generated by eclipse
21
     * It is used for version maintenance purposes in the case where his serializable class is actually serialized
22
     */
23
    private static final long serialVersionUID = 1L;
24
 
25
}