src.main.java.com.mgnt.utils.textutils.InvalidVersionFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MgntUtils Show documentation
Show all versions of MgntUtils Show documentation
Set of various Utils: stacktrace noise filter, String to/from unicode sequence converter, simple Http client JSON parser/serializer,
Silent String parsing to Integer and other numeric types, Parsing String to time intervals with support for time unit suffixes,
JSON parser that provides serialization/deserialization of classes to JSON, Version comparator and Version ranges operations,
Self-throttling binary reader from Http request, File reader, A utility that automatically initiates a Factory with instances of all
classes that implement user provided interface. An infrastructure for writing Scheduled Task classes where time
interval for task execution is provided in humanly readable format (such as "9h" for 9 hours)
package com.mgnt.utils.textutils;
/**
* @author Michael Gantman
*/
public class InvalidVersionFormatException extends Exception {
private static final long serialVersionUID = 2600427646322502464L;
public InvalidVersionFormatException() {
}
public InvalidVersionFormatException(String arg0) {
super(arg0);
}
public InvalidVersionFormatException(Throwable arg0) {
super(arg0);
}
public InvalidVersionFormatException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
public InvalidVersionFormatException(String arg0, Throwable arg1,
boolean arg2, boolean arg3) {
super(arg0, arg1, arg2, arg3);
}
}