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