home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-08-23 | 294 b | 18 lines |
- /**
- * Exception signaling an invalid employee data object
- */
-
- public class InvalidEmployeeException extends Exception
- {
- public String toString()
- {
- return "InvalidEmployeeException";
- }
-
- public String getMessage()
- {
- return "The Employee information is invalid";
- }
- }
-
-