home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / IFC_112 / netscape / util / CodingException.java < prev    next >
Encoding:
Text File  |  1999-05-28  |  576 b   |  24 lines  |  [TEXT/CWIE]

  1. // CodingException.java
  2. // By Ned Etcode
  3. // Copyright 1995, 1996, 1997 Netscape Communications Corp.  All rights reserved.
  4.  
  5. package netscape.util;
  6.  
  7. /** Exception signaling an exceptional condition during an object's encoding or
  8.   * decoding.
  9.   * @see Encoder
  10.   */
  11. public class CodingException extends Exception {
  12.     /** Constructs a CodingException.
  13.       */
  14.     public CodingException() {
  15.         super();
  16.     }
  17.  
  18.     /** Constructs a CodingException with descriptive message <b>string</b>.
  19.       */
  20.     public CodingException(String string) {
  21.         super(string);
  22.     }
  23. }
  24.