package org.theonefx.wcframework.jdbc.exception;
/**
* @Package org.theonefx.wcframework.jdbc.exception
* @ClassName: DomainCreateException
* @author 陈曦
* @date 2010-10-08 20:20:37
* @Description: 领域对象创建时的异常
*/
public class DomainCreateException extends DataAccessException {
private static final long serialVersionUID = 1349511539626950567L;
public DomainCreateException(String msg) {
super(msg);
}
public DomainCreateException(String msg, Throwable cause) {
super(msg, cause);
}
}