com.alibaba.cola.exception.ColaException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cola-core Show documentation
Show all versions of cola-core Show documentation
Cola framework core components
The newest version!
package com.alibaba.cola.exception;
/**
*
* Infrastructure Exception
*
* @author fulan.zjf 2017年10月22日 下午5:56:57
*/
public class ColaException extends BaseException {
private static final long serialVersionUID = 1L;
public ColaException(String errMessage){
super(errMessage);
this.setErrCode(ColaErrorCode.COLA_ERROR);
}
public ColaException(String errMessage, Throwable e) {
super(errMessage, e);
this.setErrCode(ColaErrorCode.COLA_ERROR);
}
}