Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class OutOfGasException extends Exception
- {
- public OutOfGasException() {
- super("OutOfGasException Occured. You tried to travel more distance than possible.");
- }
- public OutOfGasException(String message)
- {
- super(message);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement