All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clouway.oauth2.token.TokenErrorResponse Maven / Gradle / Ivy

package com.clouway.oauth2.token;

/**
 * @author Ivan Stefanov 
 */
public class TokenErrorResponse extends RuntimeException {
  public final String code;
  public final String description;

  public TokenErrorResponse(String code, String description) {
    this.code = code;
    this.description = description;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy