ProfileException.java

package org.andromda.core.profile;

/**
 * This exception is thrown when an unexpected exception occurs when plugin processing occurs.
 *
 * @author Chad Brandon
 */
public class ProfileException
    extends RuntimeException
{
    private static final long serialVersionUID = 34L;

    /**
     * Constructor for ProfileException.
     */
    public ProfileException()
    {
        super();
    }

    /**
     * Constructor for ProfileException.
     *
     * @param message the exception message
     */
    public ProfileException(String message)
    {
        super(message);
    }

    /**
     * Constructor for ProfileException.
     *
     * @param message the exception message
     * @param parent the parent throwable
     */
    public ProfileException(
        String message,
        Throwable parent)
    {
        super(message, parent);
    }

    /**
     * Constructor for ProfileException.
     *
     * @param parent the parent throwable
     */
    public ProfileException(Throwable parent)
    {
        super(parent);
    }
}