home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / HTMLException.java < prev    next >
Text File  |  1998-02-26  |  1KB  |  56 lines

  1. /**
  2.  * (c) Copyright 1996 Sun Microsystems, Inc.
  3.  *
  4.  * @(#)HTMLException.java    1.3 98/02/02
  5.  */
  6. package com.sun.java.swing.text.html;
  7.  
  8. /**
  9.  * Signals that an exception has occurred while using the calendar
  10.  * api classes.  The associated error code and detail message indicate
  11.  * what the exception is.
  12.  *
  13.  * @see    HTMLError
  14.  * @version    1.3 98/02/02
  15.  * @author Jill Nakata
  16.  */
  17.  
  18. class HTMLException extends Exception implements HTMLError {
  19.  
  20.     int    mcode;
  21.  
  22.     /**
  23.      * Constructs an HTMLException with an error code and no
  24.      * specified detail message.
  25.      * @param code    an error code
  26.      */
  27.     public HTMLException(int code)
  28.     {
  29.     super();
  30.     mcode = code;
  31.     }
  32.  
  33.     /**
  34.      * Constructs an HTMLException with an error code and the specified
  35.      * detail message.
  36.      * @param code    an error code
  37.      * @param s        the detail message
  38.      */
  39.     public HTMLException(int code, String s)
  40.     {
  41.     super(s);
  42.     mcode = code;
  43.     }
  44.  
  45.     /**
  46.      * Returns the error code associated with the exception.
  47.      *
  48.      * @return    int    error code associated with the exception
  49.      */
  50.     public int getErrorCode()
  51.     {
  52.     return mcode;
  53.     }
  54.  
  55. }
  56.