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:
parent
ff798fe483
commit
40dbc21df7
|
|
@ -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 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -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.
|
* An exception indicating that some required arguments are missing.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue