28 lines
742 B
Java
28 lines
742 B
Java
package com.goi.erp.common.exception;
|
|
|
|
public class JwtExpiredException extends RuntimeException {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public JwtExpiredException() {
|
|
super();
|
|
}
|
|
|
|
public JwtExpiredException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public JwtExpiredException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public JwtExpiredException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
protected JwtExpiredException(String message, Throwable cause,
|
|
boolean enableSuppression,
|
|
boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
}
|