Example usage for org.springframework.security.oauth2.common.exceptions ClientAuthenticationException subclass-usage

List of usage examples for org.springframework.security.oauth2.common.exceptions ClientAuthenticationException subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.common.exceptions ClientAuthenticationException subclass-usage.

Usage

From source file com.example.exception.AccessTokenExpiredException.java

public class AccessTokenExpiredException extends ClientAuthenticationException {

    public AccessTokenExpiredException(final String msg) {
        super(msg);
    }