Exceptions

Note

Some of our exceptions may be indicators of a known issue with Braintree's API. To stay up-to-date with any current issues or scheduled maintenance, we recommend subscribing to PayPal's status page, specifically the Product and API sections for Braintree services.

Handling exceptionsAnchorIcon

Handling exceptions is straightforward and follows common language conventions.

  1. Python
try:
  customer = gateway.customer.find("an_unknown_customer_id")
except braintree.exceptions.not_found_error.NotFoundError as e:
  print e

Our list of available exceptions is up-to-date with the latest versions of the server SDKs. Check our migration guide if you are integrating from an older version.

Authentication ErrorAnchorIcon

braintree.exceptions.authentication_error.AuthenticationError

Raised when your API keys are incorrect. If you're getting this exception when first integrating, double-check that you haven't accidentally tried to use your sandbox keys in production or vice-versa.

Authorization ErrorAnchorIcon

braintree.exceptions.authorization_error.AuthorizationError

Raised when the API key that you're using is not authorized to perform the attempted action according to the role assigned to the user who owns the API key.

This error can also occur if the data you submitted was malformed – either a parameter isn't in the allowed list, or it is at the wrong location in the nested parameters.

Configuration ErrorAnchorIcon

braintree.exceptions.configuration_error.ConfigurationError

Raised when the library isn't configured. Make sure you have environment, merchantId, publicKey, and privateKey.

  1. Python
gateway = braintree.BraintreeGateway(
    braintree.Configuration(
        braintree.Environment.Sandbox,
        merchant_id="your_merchant_id",
        public_key="your_public_key",
        private_key="use_your_private_key"
    )
)

Invalid ChallengeAnchorIcon

braintree.exceptions.invalid_challenge_error.InvalidChallengeError

Raised when the webhook challenge you attempt to verify is in an invalid format.

Invalid SignatureAnchorIcon

braintree.exceptions.invalid_signature_error.InvalidSignatureError

Raised when the webhook notification you attempt to parse has an invalid signature.

This could be caused by a payload being modified in transit or if you attempt to parse messages that did not originate from our servers.

Not Found ErrorAnchorIcon

braintree.exceptions.not_found_error.NotFoundError

Raised when the record that you're trying to operate on can't be found. For example, if you try to update a customer and the customer ID isn't valid. For references and associations, you'll receive a validation error if the reference is invalid. For example, when creating a credit card and specifying which customer ID it should be associated to, if the customer ID is invalid, it will be a validation error, not a not found exception.

Server ErrorAnchorIcon

braintree.exceptions.server_error.ServerError

Raised when something goes wrong on the Braintree server when trying to process your request.

Unexpected ErrorAnchorIcon

braintree.exceptions.unexpected_error.UnexpectedError

Raised when an error occurs that the client library is not built to handle. If this happens, there's probably a bug in the client library.

Too Many Requests ErrorAnchorIcon

braintree.exceptions.too_many_requests_error.TooManyRequestsError

Raised when requests associated with your account reach unsafe levels. We may limit API resources by merchant if activity risks negative impact to other merchants.

Upgrade Required ErrorAnchorIcon

braintree.exceptions.upgrade_required_error.UpgradeRequiredError

Raised when you're trying to use a version of the library that is no longer supported. Please see our Server SDK Deprecation Policy for more information.

TimeoutsAnchorIcon

Timeout ExceptionAnchorIcon

braintree.exceptions.http.timeout_error.ReadTimeoutError

Raised when a request times out because it takes longer than the custom timeout limit you set in the server SDKs. A request that returns this exception could still be successful if it processes within the Braintree gateway timeout limit of 60 seconds. Learn more about timeouts.

Gateway Timeout ErrorAnchorIcon

braintree.exceptions.gateway_timeout_error.GatewayTimeoutError

Raised when Braintree servers time out delivering a response. For search API calls, this usually indicates the amount of information you are requesting is greater than the amount of time Braintree servers have to retrieve it and send a response. Try breaking down your search calls into smaller batches.

Request Timeout ErrorAnchorIcon

braintree.exceptions.request_timeout_error.RequestTimeoutError

Raised when Braintree servers time out waiting for the entire request from your server. This usually indicates an issue upstream of Braintree.

Service Unavailable ErrorAnchorIcon

braintree.exceptions.service_unavailable_error.ServiceUnavailableError

Raised when Braintree or a downstream service is unavailable.

If you accept cookies, we’ll use them to improve and customize your experience and enable our partners to show you personalized PayPal ads when you visit other sites. Manage cookies and learn more