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

com.tmsps.ne4spring.exception.NEServiceException Maven / Gradle / Ivy

There is a newer version: 999.0.0.0
Show newest version
package com.tmsps.ne4spring.exception;

/**
 * 
 * @author zhangwei [email protected]
 *
 */
public class NEServiceException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	public NEServiceException() {
	}

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

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

	public NEServiceException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy