Advertisement
scaawt

TimeFormatException

Nov 14th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /**
  2. * written by tariq scott
  3. */
  4. public class TimeFormatException extends Exception {
  5.  
  6. public TimeFormatException ()
  7. {
  8. super("This is an incorrect time");
  9. }
  10.  
  11. public TimeFormatException (String message)
  12. {
  13. super (message);
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement