me.aifaq.commons.lang.exception.ImpossibleArrivedException Maven / Gradle / Ivy
package me.aifaq.commons.lang.exception;
/**
* @author Wang Wei [[email protected]]
* @since 11:29 2017/8/14
*/
public class ImpossibleArrivedException extends RuntimeException {
public ImpossibleArrivedException() {
super();
}
public ImpossibleArrivedException(String message) {
super(message);
}
public ImpossibleArrivedException(String message, Throwable cause) {
super(message, cause);
}
public ImpossibleArrivedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy