Files
javaSE1001/day01/src/com/inmind/s_test_05/InvalidAmountException.java
2025-12-21 17:24:54 +08:00

8 lines
196 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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