Advertisement
a1ananth

java3

Oct 24th, 2011
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class OverflowException extends Exception
  2. {
  3.     public OverflowException() {
  4.         super("OverflowException Occured. More fuel than CAPACITY was provided.");
  5.     }
  6.    
  7.     public OverflowException(String message)
  8.     {
  9.         super(message);
  10.     }
  11. }
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement