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

com.coherentlogic.coherent.data.adapter.aop.exceptions.PropertyChangeGeneratorException Maven / Gradle / Ivy

package com.coherentlogic.coherent.data.adapter.aop.exceptions;

import org.springframework.core.NestedRuntimeException;

/**
 * Thrown when the an exception is thrown within the {@link DefaultPropertyChangeGenerator}.
 *
 * @author Thomas P. Fuller
 * @author Support
 */
public class PropertyChangeGeneratorException extends NestedRuntimeException {

    private static final long serialVersionUID = -2504265172653939223L;

    public PropertyChangeGeneratorException(String msg, Throwable cause) {
        super(msg, cause);
    }

    public PropertyChangeGeneratorException(String msg) {
        super(msg);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy