ClientException.java

package org.andromda.core.server;

/**
 * This exception is thrown when a special situation is encountered within an
 * {@link DefaultClient} instance.
 *
 * @author Chad Brandon
 */
public class ClientException
    extends RuntimeException
{
    private static final long serialVersionUID = 34L;

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

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

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

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