Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

package com.erggroup.buildtool.daemon;
//
//  This exception can be thrown by various parts of the build system to indicate that the current build cycle
//  should be abandoned.
//
//  Used to indicate problems such as:
//      Daemon paused
//      Indefinite pause
//      Daemon de-configured
//      Daemon stopped
//

public class ShouldNotContinueExpection extends Exception {
    
    public ShouldNotContinueExpection(String string) {
        super(string);
    }
    
    /**This disables a compiler warning
     * It was generated by eclipse
     * It is used for version maintenance purposes in the case where his serializable class is actually serialized
     */
    private static final long serialVersionUID = 1L;

}