blade.kit.exception.IllegalPathException Maven / Gradle / Ivy
package blade.kit.exception;
/**
* 代表非法的路径。
*
* @author biezhi
* @since 1.0
*/
public class IllegalPathException extends IllegalArgumentException {
/**
*
*/
private static final long serialVersionUID = 1434004725746713564L;
public IllegalPathException() {
super();
}
public IllegalPathException(String message, Throwable cause) {
super(message, cause);
}
public IllegalPathException(String s) {
super(s);
}
public IllegalPathException(Throwable cause) {
super(cause);
}
public Throwable fillInStackTrace() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy