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); } }