de.retest.ui.descriptors.ParameterParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retest-model Show documentation
Show all versions of retest-model Show documentation
The domain model for both retest and recheck.
package de.retest.ui.descriptors;
public class ParameterParseException extends Exception {
private static final long serialVersionUID = 1L;
public ParameterParseException( final String msg, final Exception exc ) {
super( msg, exc );
}
}