All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.java.com.mgnt.utils.textutils.InvalidVersionFormatException Maven / Gradle / Ivy

Go to download

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)

There is a newer version: 1.7.0.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy