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

cn.minsin.core.exception.MutilsException Maven / Gradle / Ivy

Go to download

mutils-core 作为mutils组件中的核心模块。 可以被maven项目单独引用,引入后可提供多种帮助类,如StringUtil、NumberUtil、DateUtil等等 maven仓库:https://mvnrepository.com/artifact/cn.minsin/mutils-core

There is a newer version: 0.3.7
Show newest version
package cn.minsin.core.exception;

/**
 *  框架内发生一般异常时抛出
 * @author minsin
 *
 */
public class MutilsException extends RuntimeException{

	/**
	 * 
	 */
	private static final long serialVersionUID = -1254579703396031354L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy