13 lines
301 B
Java
Executable File
13 lines
301 B
Java
Executable File
package com.plannaplan.exceptions;
|
|
|
|
/**
|
|
* Excepction to be thrown when provided token is expired
|
|
*/
|
|
public class TokenExpiredException extends RuntimeException {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public TokenExpiredException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
} |