Skip to content

Instantly share code, notes, and snippets.

@syhily
Created September 11, 2015 15:28
Show Gist options
  • Save syhily/9e971dcab64e7d5704dd to your computer and use it in GitHub Desktop.
Save syhily/9e971dcab64e7d5704dd to your computer and use it in GitHub Desktop.
import CommonBizException;
/**
* 核心业务异常基类,所有核心子系统的业务异常都必须继承于此异常
*
* @author: yufan.sheng
* @since: 2014-09-17 下午02:12:29
* @version: 1.0
*/
public abstract class CoreBizException extends CommonBizException {
private static final long serialVersionUID = -3405918225261769646L;
protected CoreBizException(String defineCode) {
super(defineCode);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment