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

net.sf.javaprinciples.data.transformer.AttributeNotFoundException Maven / Gradle / Ivy

package net.sf.javaprinciples.data.transformer;

/**
 * An Exception thrown by ModelElementMappers to indicate an attribute was not found.
 * 
 * @author Kay Chevalier
 * 
 */
public class AttributeNotFoundException extends RuntimeException
{

    /**
     * Constructs a new AttributeNotFoundException.
     *
     * @param msg the message.
     */
    public AttributeNotFoundException(String msg)
    {
        super(msg);
    }

    /**
     * Constructs a new AttributeNotFoundException.
     *
     * @param msg the message.
     * @param exception the cause.
     */
    public AttributeNotFoundException(String msg, Throwable exception)
    {
        super(msg, exception);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy