Skip to content

Instantly share code, notes, and snippets.

@bragboy
Last active November 12, 2015 11:18
Show Gist options
  • Select an option

  • Save bragboy/f472d0e0b4849413cf38 to your computer and use it in GitHub Desktop.

Select an option

Save bragboy/f472d0e0b4849413cf38 to your computer and use it in GitHub Desktop.
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