home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / un2maiq4 / pjjava / src / pj / io / incomp~1.jav < prev    next >
Encoding:
Text File  |  1996-08-14  |  1.9 KB  |  73 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.     @(#)IncompatiblePaperStoryException.java    o.00 20-Dec-95
  16.  
  17.  
  18.         An exception that signals an incompatibility between a PaperStory
  19.         and some other object, typically a StoryContainer
  20.  
  21.  
  22.     Authors:
  23.  
  24.         rphall      Rick Hall
  25.  
  26.  
  27.     Version Ident:
  28.  
  29.         $Header$
  30.  
  31.  
  32.     History:
  33.  
  34.         12/20/95    rphall      Initial Creation
  35.  
  36.  
  37. ---------------------------------------------------------------------------*/
  38.  
  39. package pj.io;
  40.  
  41. /**
  42.  * Signals an attempt to add a PaperStory of the wrong type.
  43.  * @version 0.00, 20-Dec-95
  44.  * @author     Rick Hall
  45.  */
  46. public class IncompatiblePaperStoryException extends Exception
  47.     {
  48.  
  49.  
  50.     // --- Public constructors
  51.  
  52.     /**
  53.      * Constructs a IncompatiblePaperStoryException with no detail message.  A
  54.      * detail message is a String that describes this particular 
  55.      * exception.
  56.      */
  57.     public IncompatiblePaperStoryException()
  58.         {
  59.         }
  60.  
  61.     /**
  62.      * Constructs a IncompatiblePaperStoryException with the specified detail 
  63.      * message.  A detail message is a String that describes this 
  64.      * particular exception.
  65.      * @param msg the detail message
  66.      */
  67.     public IncompatiblePaperStoryException(String msg)
  68.         { 
  69.         super(msg); 
  70.         }
  71.  
  72.     } // IncompatiblePaperStoryException
  73.