// // Othecko 1.1 // // Steve Matuszek // Jack Freelander // University of North Carolina at Chapel Hill // // // GameException.java // Steve Matuszek 1.0 // // // This class defines the Exceptions that can be thrown and caught by // the code for this system. The only thing it encapsulates is a String, // but its type serves to distinguish it from other exceptions. // import java.lang.Exception; public class GameException extends Exception { public GameException() { super(); } public GameException(String s) { super(s); } }