InvalidPriceException.java 705 B

1234567891011121314151617181920212223242526272829
  1. package J20250724.demo01;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title InvalidPriceException
  6. * @description
  7. * @create 2025/7/24
  8. */
  9. public class InvalidPriceException extends Exception{
  10. public InvalidPriceException() {
  11. }
  12. public InvalidPriceException(String message) {
  13. super(message);
  14. }
  15. public InvalidPriceException(String message, Throwable cause) {
  16. super(message, cause);
  17. }
  18. public InvalidPriceException(Throwable cause) {
  19. super(cause);
  20. }
  21. public InvalidPriceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
  22. super(message, cause, enableSuppression, writableStackTrace);
  23. }
  24. }