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

com.penglecode.common.exception.CustomDataValidationException Maven / Gradle / Ivy

Go to download

commons is a little java tool to make your development easier in your work.

The newest version!
package com.penglecode.common.exception;

/**
 * 用于数据校验的Exception
 * 
 * @author	  	pengpeng
 * @date	  	2014年7月28日 下午2:53:59
 * @version  	1.0
 */
public class CustomDataValidationException extends CustomException {

	private static final long serialVersionUID = 1L;

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

	public CustomDataValidationException(String message, Throwable cause) {
		super(message, cause);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy