Interface AccessDeniedError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
AccessDeniedErrorImpl

public interface AccessDeniedError extends ErrorObject

This is the generic error code for access denied. In case of a wrong scope, an InvalidScopeError will be returned.


Example to create an instance using the builder pattern

     AccessDeniedError accessDeniedError = AccessDeniedError.builder()
             .message("{message}")
             .build()