package com.qianwen.mdc.domain;
|
|
/**
|
* 领域异常基类
|
*/
|
public class DomainException extends RuntimeException{
|
|
|
public DomainException(String message) {
|
super(message);
|
// TODO Auto-generated constructor stub
|
}
|
|
public DomainException() {
|
super();
|
// TODO Auto-generated constructor stub
|
}
|
|
public DomainException(String message, Throwable cause) {
|
super(message, cause);
|
// TODO Auto-generated constructor stub
|
}
|
|
public DomainException(Throwable cause) {
|
super(cause);
|
// TODO Auto-generated constructor stub
|
}
|
|
private String errMessage;
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 5878126650413834467L;
|
/*
|
public DomainException(String msg) {
|
this.errMessage = msg;
|
}
|
|
public String getErrMessage() {
|
return errMessage;
|
}
|
*/
|
|
}
|