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

me.aifaq.commons.lang.exception.ImpossibleArrivedException Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
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