13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
|
|
package com.bonus.core.exception;
|
||
|
|
|
||
|
|
public class ZeroAffectRowsException extends RuntimeException {
|
||
|
|
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
public ZeroAffectRowsException(String msg){
|
||
|
|
super(msg);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|