// Filename Counters/CounterException.java. // Providing an extension of the RuntimeException class // for use with the Counter hierarchy // // Written for JFL book Chapter 4 see text. // Fintan Culwin, v0.1, January 1997 package Counters; public class CounterException extends RuntimeException { public CounterException( String reason ) { super( reason ); } // End CounterException constructor } // End CounterException