Moved ParseException to it's own file and made it public.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@750 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kiran 2009-05-19 14:42:44 +00:00
parent ff798fe483
commit 40dbc21df7
2 changed files with 13 additions and 9 deletions

View File

@ -0,0 +1,13 @@
package org.broadinstitute.sting.utils.cmdLine;
import org.broadinstitute.sting.utils.StingException;
/**
* Generic class for handling misc parsing exceptions.
*/
public class ParseException extends StingException {
public ParseException( String message ) {
super( message );
}
}

View File

@ -454,15 +454,6 @@ public class ParsingEngine {
}
}
/**
* Generic class for handling misc parsing exceptions.
*/
class ParseException extends StingException {
public ParseException( String message ) {
super( message );
}
}
/**
* An exception indicating that some required arguments are missing.
*/