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

com.stripe.exception.oauth.InvalidScopeException Maven / Gradle / Ivy

There is a newer version: 26.13.0-beta.1
Show newest version
package com.stripe.exception.oauth;

/** InvalidScopeException is raised when an invalid scope parameter is provided. */
public class InvalidScopeException extends OAuthException {
  private static final long serialVersionUID = 2L;

  public InvalidScopeException(
      String code, String description, String requestId, Integer statusCode, Throwable e) {
    super(code, description, requestId, statusCode, e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy