ExpireException.java 412 B

123456789101112131415161718
  1. package com.aidex.common.exception;
  2. public class ExpireException extends RuntimeException {
  3. /**
  4. *
  5. */
  6. private static final long serialVersionUID = 3056819439922242913L;
  7. public ExpireException(String msg, Throwable cause) {
  8. super(msg, cause);
  9. }
  10. public ExpireException(String s) {
  11. super(s);
  12. }
  13. @Override
  14. public Throwable fillInStackTrace() {
  15. return this;
  16. }
  17. }