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

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

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

/**
 * Thrown whenever a transformation template definition is not well formed.
 *
 * @author facarvalho
 */
public class TransformationDefinitionException extends ButterflyRuntimeException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy