
name.remal.version.VersionRangeParsingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
The newest version!
package name.remal.version;
public class VersionRangeParsingException extends RuntimeException {
private static final long serialVersionUID = 1;
public VersionRangeParsingException() {
}
public VersionRangeParsingException(String message) {
super(message);
}
public VersionRangeParsingException(String message, Throwable cause) {
super(message, cause);
}
public VersionRangeParsingException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy