/** *

NetRand Project

*

Software Engineering - CS536

*

University of Wisconsin - Milwaukee

*

Authors:

* *
File: BitPoolException.java *
*

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