// This is code fragment 5.4 from the textbook. // Instead of documentation, Goodrich & Tamassia wrote chapter 5. // A run-time exception for invalid positions public class InvalidPositionException extends RuntimeException { public InvalidPositionException(String err) { super(err); } }