Subversion Repositories DevTools

Rev

Rev 6914 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
package com.erggroup.buildtool.abt;
2
 
3
/** Class to signal a build exception
4
 *  It is an UnChecked exception
5
 *  It should only be used to trap and report programming errors and not
6
 *  recoverable runtime errors. 
7
 */
8
 
9
 
10
public class BuildToolException extends RuntimeException {
11
    /**
12
     * 
13
     */
14
    private static final long serialVersionUID = 1L;
15
 
16
    public BuildToolException(String s) {
17
        super(s);
18
    }
19
}