2022-02-25 19:41:22 +08:00
|
|
|
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);
|
|
|
|
|
}
|
2022-06-30 11:10:46 +08:00
|
|
|
|
|
|
|
|
public SalaryRunTimeException(String message, Throwable cause) {
|
|
|
|
|
super(message, cause);
|
|
|
|
|
}
|
2022-02-25 19:41:22 +08:00
|
|
|
}
|