/** *

NetRand Project

*

Software Engineering - CS536

*

University of Wisconsin - Milwaukee

*

Authors:

* *
File: ByteServerException.java *
*

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