ServerException.java

package org.andromda.core.server;

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

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

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

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