Skip to content
Snippets Groups Projects
Commit ea356e44 authored by dgelessus's avatar dgelessus
Browse files

Remove VOException base class because there are now only parse errors

parent f74185e9
No related branches found
No related tags found
No related merge requests found
Pipeline #135196 passed
package de.prob.voparser;
public class VOException extends RuntimeException {
private static final long serialVersionUID = 1L;
public VOException(final String message, final Throwable cause) {
super(message, cause);
}
public VOException(final String message) {
this(message, null);
}
public VOException(final Throwable cause) {
this(cause == null ? null : cause.toString(), cause);
}
}
package de.prob.voparser;
public class VOParseException extends VOException {
public class VOParseException extends RuntimeException {
private static final long serialVersionUID = 1L;
public VOParseException(final String message, final Throwable cause) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment