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

uk.co.flamingpenguin.jewel.JewelException Maven / Gradle / Ivy

package uk.co.flamingpenguin.jewel;

/**
 * Superclass of all Jewel Exceptions
 *
 * @deprecated please use classes in package com.lexicalscope.jewel instead
 *
 * @author Tim Wood
 */
@Deprecated
public class JewelException extends Exception
{
    private static final long serialVersionUID = 5015614550344133699L;

    /**
     * A new exception with no message
     */
    public JewelException()
    {
        super();
    }

    /**
     * A new exception with the given message and cause
     *
     * @param message The message
     * @param cause The cause
     */
    public JewelException(final String message, final Throwable cause)
    {
        super(message, cause);
    }

    /**
     * A new exception with the given message
     *
     * @param message The message
     */
    public JewelException(final String message)
    {
        super(message);
    }

    /**
     * A new exception with the given cause
     *
     * @param cause The cause
     */
    public JewelException(final Throwable cause)
    {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy