Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save bragboy/a35c8941fc76128b4302 to your computer and use it in GitHub Desktop.
package nasa.exceptions;
public class InvalidInputException extends Exception{
/**
*
*/
private static final long serialVersionUID = 1L;
public InvalidInputException(){
super();
}
public InvalidInputException(String msg){
super(msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment