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