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

com.braintreegateway.exceptions.UnexpectedException Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway.exceptions;

public class UnexpectedException extends BraintreeException {

    private static final long serialVersionUID = 1L;

    public UnexpectedException(String message) {
        super(message);
    }

    public UnexpectedException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy