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

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

There is a newer version: 3.2.7
Show newest version
package com.paypal.butterfly.extensions.api.exception;

/**
 * Thrown whenever an unexpected behavior or result
 * during execution of a {@link com.paypal.butterfly.extensions.api.TransformationUtility}.
 * Transformation utility exceptions ALWAYS abort the transformation process.
 *
 * @author facarvalho
 */
public class TransformationUtilityException extends ButterflyRuntimeException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy