////////////////////////////////////////////////////////////////////////////
 //
 // File:    GraphicsException.java
 //
 // Purpose: The Graphics object has thrown an exception.
 //
 // Authors:
 //   txe  Travis Emmitt  emmitt@virginia.edu
 //
 // Modifications:
 //   16-NOV-1998  txe  (v2) Initial creation
 //
 ////////////////////////////////////////////////////////////////////////////
 public class GraphicsException extends Exception {
   public GraphicsException (String message) {
         super ("Graphics error: " + message);
     }
     public GraphicsException (Exception e) {
         super ("Graphics error: " + e.getMessage ());
     }
 }
 /////////////////////////////////////////////////////////////////////////////