package org.gcube.portal.oidc.lr62; public class RefreshException extends OIDCException { private static final long serialVersionUID = -8657006296380516704L; public RefreshException() { } public RefreshException(String message) { super(message); } public RefreshException(Throwable cause) { super(cause); } public RefreshException(String message, Throwable cause) { super(message, cause); } }