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

io.leopard.core.exception.other.OutSideException Maven / Gradle / Ivy

package io.leopard.core.exception.other;

import io.leopard.core.exception.LeopardRuntimeException;

/**
 * 外部接口异常
 * 
 * @author 阿海
 */
public class OutSideException extends LeopardRuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

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

	public OutSideException(String msg, Throwable cause) {
		super(msg, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy