Advertisement
a1ananth

java2

Oct 24th, 2011
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class OutOfGasException extends Exception
  2. {
  3.     public OutOfGasException() {
  4.         super("OutOfGasException Occured. You tried to travel more distance than possible.");
  5.     }
  6.    
  7.     public OutOfGasException(String message)
  8.     {
  9.         super(message);
  10.     }
  11. }
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement