/** *
* defines an exception for the BitPool class */ public class BitPoolException extends Exception { public BitPoolException() { super(); } public BitPoolException(String s) { super(s); } }