Rev 6914 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.erggroup.buildtool.abt;/** Class to signal a build exception* It is an UnChecked exception* It should only be used to trap and report programming errors and not* recoverable runtime errors.*/public class BuildToolException extends RuntimeException {/****/private static final long serialVersionUID = 1L;public BuildToolException(String s) {super(s);}}