StorageFeeException.java 260 B

123456789101112131415
  1. package com.iot.common.exception;
  2. /**
  3. * @author caifc
  4. * @date 2021-10-18 11:15
  5. */
  6. public class StorageFeeException extends Exception {
  7. /**
  8. * @param msg 错误信息
  9. */
  10. public StorageFeeException(String msg) {
  11. super(msg);
  12. }
  13. }