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