com.sap.cloud.security.token.InvalidTokenException Maven / Gradle / Ivy
The newest version!
/**
* SPDX-FileCopyrightText: 2018-2023 SAP SE or an SAP affiliate company and Cloud Security Client Java contributors
*
* SPDX-License-Identifier: Apache-2.0
*/
package com.sap.cloud.security.token;
/**
* Runtime exception during token validation.
*/
public class InvalidTokenException extends RuntimeException {
public InvalidTokenException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy