initial commit

This commit is contained in:
chenjinsong
2018-09-27 16:21:05 +08:00
commit dc91c4c987
2011 changed files with 408920 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package nis.nms.exceptions;
/**
* This exception is used to mark business rule violations.
*
* @author Christian Bauer <christian@hibernate.org>
*/
public class BusinessException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1275639675329076996L;
public BusinessException() {}
public BusinessException(String message) {
super(message);
}
public BusinessException(String message, Throwable cause) {
super(message, cause);
}
public BusinessException(Throwable cause) {
super(cause);
}
}