UnitException.java

package org.djunits.unit;

/**
 * Exceptions in Unit package.
 * <p>
 * Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
 * <p>
 * $LastChangedDate: 2018-01-28 03:17:44 +0100 (Sun, 28 Jan 2018) $, @version $Revision: 256 $, by $Author: averbraeck $,
 * initial version Jun 18, 2014 <br>
 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
 */
public class UnitException extends Exception
{

    /** */
    private static final long serialVersionUID = 20140618L;

    /**
     * 
     */
    public UnitException()
    {
        super();
    }

    /**
     * @param message String
     * @param cause Throwable
     * @param enableSuppression bpp;am
     * @param writableStackTrace boolean
     */
    public UnitException(final String message, final Throwable cause, final boolean enableSuppression,
            final boolean writableStackTrace)
    {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    /**
     * @param message String
     * @param cause Throwable
     */
    public UnitException(final String message, final Throwable cause)
    {
        super(message, cause);
    }

    /**
     * @param message String
     */
    public UnitException(final String message)
    {
        super(message);
    }

    /**
     * @param cause Throwable
     */
    public UnitException(final Throwable cause)
    {
        super(cause);
    }

}