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

com.paypal.butterfly.extensions.api.exception.ButterflyRuntimeException Maven / Gradle / Ivy

package com.paypal.butterfly.extensions.api.exception;

/**
 * Butterfly generic runtime exception.
 *
 * @author facarvalho
 */
public class ButterflyRuntimeException extends RuntimeException {

    public ButterflyRuntimeException(String exceptionMessage) {
        super(exceptionMessage);
    }

    public ButterflyRuntimeException(String exceptionMessage, Exception exception) {
        super(exceptionMessage, exception);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy