View Javadoc
1   package com.guinetik.rr.auth;
2   
3   /**
4    * Exception thrown when token refresh fails.
5    */
6   public class TokenRefreshException extends RuntimeException {
7       
8       public TokenRefreshException(String message) {
9           super(message);
10      }
11  
12      public TokenRefreshException(String message, Throwable cause) {
13          super(message, cause);
14      }
15  }