home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-19 | 523 b | 18 lines |
- /*
- * DataNotAvailable.java 1.0 12 Jan 1997
- *
- * Copyright (c) 1996 Krumel & Associates, Inc. All Rights Reserved.
- *
- * This software is provided as is. Krumel & Associates shall not be liable
- * for any damages suffered by licensee as a result of using, modifying or
- * distributing this software or its derivatives.
- */
-
- package symantec.itools.db.awt;
-
- public class DataNotAvailable extends Exception {
- public DataNotAvailable() {}
- public DataNotAvailable(String msg) { super(msg); }
- }
-
-