home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / prosrc.bin / RelationshipPendingException.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  565 b   |  33 lines

  1. /**
  2.  * @(#)RelationshipPendingException.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  
  8. /**
  9.  * Extends SynchronizerException
  10.  */
  11.  
  12. package symantec.itools.db.beans.binding;
  13.  
  14. public class RelationshipPendingException extends SynchronizerException
  15. {
  16.     /**
  17.      * Constructor
  18.      */
  19.      
  20.     public RelationshipPendingException(String reason)
  21.     {
  22.         super(reason);
  23.     }
  24.  
  25.     /**
  26.      * Default constructor
  27.      */
  28.      
  29.     public RelationshipPendingException()
  30.     {
  31.         super();
  32.     }
  33. }