////////////////////////////////////////////////////////////////////////////
 //
 // File:    StatsException.java
 //
 // Purpose: The Stats data structure or implementation is invalid.
 //          This is a high-level exception, and is best used by
 //          passing it the low-level exception that triggered it.
 //
 // Authors:
 //   txe  Travis Emmitt  emmitt@virginia.edu
 //
 // Modifications:
 //   16-NOV-1998  txe  (v2) Initial creation
 //
 ////////////////////////////////////////////////////////////////////////////
 public class StatsException extends Exception {
   public StatsException (String message) {
         super ("Stats exception: " + message);
     }
   public StatsException (Exception e) {
         super ("Stats exception: " + e.getMessage());
     }
 }
 /////////////////////////////////////////////////////////////////////////////