home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 363 b | 20 lines |
- /*
- * @(#InvalidType.java
- *
- * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
- *
- */
-
- package symantec.itools.db.beans.binding.databus;
- public class InvalidType extends Exception
- {
- public String toString()
- {
- return "InvalidType";
- }
-
- public String getMessage()
- {
- return "The type in the constructor is not valid. ";
- }
- }