UnitRuntimeException.java
package org.djunits.unit;
/**
* Runtime Exceptions in Unit package.
* <p>
* Copyright (c) 2013-2026 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>.
* @author Peter Knoppers
*/
public class UnitRuntimeException extends RuntimeException
{
/** */
private static final long serialVersionUID = 600L;
/**
* Construct a new UnitRuntimeException with all default values.
*/
public UnitRuntimeException()
{
// Nothing to do here
}
/**
* Construct a new UnitRuntimeException with some default values.
* @param message String
* @param cause Throwable
*/
public UnitRuntimeException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
* Construct a new UnitRuntimeException with some default values.
* @param message String
*/
public UnitRuntimeException(final String message)
{
super(message);
}
/**
* Construct a new UnitRuntimeException with some default values.
* @param cause Throwable
*/
public UnitRuntimeException(final Throwable cause)
{
super(cause);
}
}