Examination_system/Examination_system-1/.svn/pristine/c7/c7abb1eecbaa0cb97ceb76b14af...

13 lines
230 B
Plaintext
Raw Normal View History

2023-10-30 13:10:40 +08:00
package com.bonus.core.exception;
public class ZeroAffectRowsException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ZeroAffectRowsException(String msg){
super(msg);
}
}