GZMachinesWeb/.svn/pristine/c7/c7abb1eecbaa0cb97ceb76b14af...

13 lines
218 B
Plaintext
Raw Permalink Normal View History

2025-06-20 17:47:53 +08:00
package com.bonus.core.exception;
public class ZeroAffectRowsException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ZeroAffectRowsException(String msg){
super(msg);
}
}