
net.dongliu.commons.exception.StringFormatException Maven / Gradle / Ivy
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