home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1998 #7 & #8 / Datatid-1998-07&08.iso / internet / visual / prosrc.bin / InvalidType.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  363 b   |  20 lines

  1. /*
  2.  * @(#InvalidType.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  
  8. package symantec.itools.db.beans.binding.databus;
  9. public class InvalidType extends Exception
  10. {
  11.     public String toString()
  12.     {
  13.         return "InvalidType";
  14.     }
  15.  
  16.     public String getMessage()
  17.     {
  18.         return "The type in the constructor is not valid. ";
  19.     }
  20. }