weaver-hrm-salary/src/com/engine/salary/exception/SalaryRunTimeException.java

12 lines
267 B
Java
Raw Normal View History

package com.engine.salary.exception;
public class SalaryRunTimeException extends RuntimeException {
public SalaryRunTimeException(String message) {
super(message);
}
2022-03-30 20:27:17 +08:00
public SalaryRunTimeException(Throwable cause) {
super(cause);
}
}