AesDecodeException.java 533 B

12345678910111213141516171819202122232425
  1. package com.shanghaichengdi.ghjgitem.exception;
  2. /**
  3. * 解码错误异常
  4. */
  5. public class AesDecodeException extends RuntimeException {
  6. private static final String ERROR_MESSAGE = "传入参数不符合规范要求";
  7. public AesDecodeException() {
  8. super();
  9. }
  10. public AesDecodeException(String errMessage) {
  11. super(errMessage);
  12. }
  13. public static void cast(String errMessage) {
  14. throw new AesDecodeException(errMessage);
  15. }
  16. public static void cast() {
  17. throw new AesDecodeException(ERROR_MESSAGE);
  18. }
  19. }