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

net.dongliu.commons.exception.StringFormatException Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
package net.dongliu.commons.exception;

/**
 * Thrown when illegal string format pattern encountered
 *
 * @author Liu Dong
 */
public class StringFormatException extends RuntimeException {
    public StringFormatException() {
    }

    public StringFormatException(String message) {
        super(message);
    }

    public StringFormatException(String message, Throwable cause) {
        super(message, cause);
    }

    public StringFormatException(Throwable cause) {
        super(cause);
    }

    public StringFormatException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy