提交漏交的文件
This commit is contained in:
parent
b2832a55f2
commit
6544b6501f
|
|
@ -0,0 +1,19 @@
|
||||||
|
package com.bonus.common.core.exception;
|
||||||
|
|
||||||
|
import com.bonus.common.core.constant.HttpStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangvivi
|
||||||
|
*/
|
||||||
|
public class RepeatCommitException extends RuntimeException
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
private final int code;
|
||||||
|
|
||||||
|
public RepeatCommitException(String msg)
|
||||||
|
{
|
||||||
|
super(msg);
|
||||||
|
this.code = HttpStatus.REPEATE_ERROR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Reference in New Issue