home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 565 b | 33 lines |
- /**
- * @(#)RelationshipPendingException.java
- *
- * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
- *
- */
-
- /**
- * Extends SynchronizerException
- */
-
- package symantec.itools.db.beans.binding;
-
- public class RelationshipPendingException extends SynchronizerException
- {
- /**
- * Constructor
- */
-
- public RelationshipPendingException(String reason)
- {
- super(reason);
- }
-
- /**
- * Default constructor
- */
-
- public RelationshipPendingException()
- {
- super();
- }
- }