123456789101112131415161718 |
- package com.aidex.common.exception;
- public class ExpireException extends RuntimeException {
- /**
- *
- */
- private static final long serialVersionUID = 3056819439922242913L;
- public ExpireException(String msg, Throwable cause) {
- super(msg, cause);
- }
- public ExpireException(String s) {
- super(s);
- }
- @Override
- public Throwable fillInStackTrace() {
- return this;
- }
- }
|