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

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

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

/**
 * Thrown whenever the application to be transformed is not in a valid state.
 *
 * @author facarvalho
 */
// TODO this class is not actually being used anywhere at this moment
public class ApplicationValidationException extends ButterflyRuntimeException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy