This commit is contained in:
2025-12-21 17:24:54 +08:00
commit e8c50a3d78
660 changed files with 29599 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.inmind.s_test_05;
// 自定义异常2无效金额异常
class InvalidAmountException extends Exception {
public InvalidAmountException(String msg) {
super(msg);
}
}