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

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

There is a newer version: 28.2.0
Show newest version
package com.stripe.exception.oauth;

import com.stripe.exception.StripeException;

/**
 * Base parent class for all OAuth exceptions.
 */
public class OAuthException extends StripeException {
  private static final long serialVersionUID = 2L;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy