home *** CD-ROM | disk | FTP | other *** search
/ Java Developer's Companion / Java Developer's Companion.iso / Javacup / INGZP26A.TAR / internet / INGZP26A / MapError.java < prev    next >
Encoding:
Java Source  |  1996-05-21  |  421 b   |  36 lines

  1. /* $Id: MapError.java,v 1.1 1996/03/22 17:36:05 djun Exp $
  2.  
  3.    File: MapError.java
  4.  
  5.    Handle Errors.
  6.  
  7.    Author: Djun M. Kim
  8.    Copyright (c) 1996 Djun M. Kim.  All rights reserved.
  9.  
  10. */
  11.  
  12. import java.awt.*;
  13.  
  14. public class MapError {
  15.  
  16.     // Constructor
  17.     MapError () {
  18.     };
  19.  
  20.     public void display(String s) {
  21.     System.out.println(s);
  22.     };
  23.  
  24.     public void debug(String s) {
  25.     System.out.println(s);
  26.     };
  27.  
  28. }
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.