Last active
November 12, 2015 11:18
-
-
Save bragboy/f472d0e0b4849413cf38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package nasa.exceptions; | |
| public class OutOfRangeException extends Exception { | |
| /** | |
| * | |
| */ | |
| private static final long serialVersionUID = 1L; | |
| public OutOfRangeException(String msg){ | |
| super(msg); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment