home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / un2maiq4 / pjjava / src / pj / io / malfor~1.jav < prev    next >
Encoding:
Text File  |  1996-08-14  |  1.8 KB  |  72 lines

  1. /*---------------------------------------------------------------------------
  2.  
  3.     Written by the Personal Journal developers of Dow Jones & Company, Inc.
  4.  
  5.     Dow Jones makes no representations or warranties about 
  6.     the suitability of this software, either express or 
  7.     implied, including but not limited to the implied warranties 
  8.     of merchantability, fitness for a particular purpose, 
  9.     or non-infringement.  Dow Jones will not be liable for 
  10.     any damages suffered by a user as a result of using, 
  11.     modifying or distributing this software or its derivatives.
  12.  
  13.  
  14.  
  15.     @(#)MalformedPaperStoryException.java   0.00 20-Dec-95
  16.  
  17.  
  18.         An exception that signals a PaperStory that is internally inconsistent
  19.  
  20.  
  21.     Authors:
  22.  
  23.         rphall      Rick Hall
  24.  
  25.  
  26.     Version Ident:
  27.  
  28.         $Header$
  29.  
  30.  
  31.     History:
  32.  
  33.         12/20/95    rphall      Initial Creation
  34.  
  35.  
  36. ---------------------------------------------------------------------------*/
  37.  
  38. package pj.io;
  39.  
  40. /**
  41.  * Signals that a malformed PaperStory has occurred.
  42.  * @version 0.00, 20-Dec-95
  43.  * @author     Rick Hall
  44.  */
  45. public class MalformedPaperStoryException extends Exception
  46.     {
  47.  
  48.     // --- Public constructors
  49.  
  50.     /**
  51.      * Constructs a MalformedPaperStoryException with no detail message. 
  52.      * A detail message is a String that describes this particular 
  53.      * exception.
  54.      */
  55.     public MalformedPaperStoryException()
  56.         {
  57.         }
  58.  
  59.     /**
  60.      * Constructs a MalformedPaperStoryException with the specified detail 
  61.      * message.  A detail message is a String that describes this 
  62.      * particular exception.
  63.      * @param msg the detail message
  64.      */
  65.     public MalformedPaperStoryException(String msg)
  66.         { 
  67.         super(msg); 
  68.         }
  69.  
  70.     } // MalformedPaperStoryException
  71.  
  72.