nl.tudelft.simulation.dsol.animation.gis.DsolGisException Maven / Gradle / Ivy
package nl.tudelft.simulation.dsol.animation.gis;
/**
* DsolGisException for exceptions when reading or drawing GIS layers.
*
* Copyright (c) 2020-2024 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
* for project information DSOL Manual. The DSOL
* project is distributed under a three-clause BSD-style license, which can be found at
* DSOL License.
*
* @author Alexander Verbraeck
*/
public class DsolGisException extends Exception
{
/** */
private static final long serialVersionUID = 1L;
/**
* Constructs a new blank DsolGisException.
*/
public DsolGisException()
{
super();
}
/**
* Constructs a new DsolGisException.
* @param message String; the message to display
* @param cause Throwable; the underlying exception
*/
public DsolGisException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
* Constructs a new DsolGisException.
* @param message String; the message to display
*/
public DsolGisException(final String message)
{
super(message);
}
/**
* Constructs a new DsolGisException.
* @param cause Throwable; the underlying exception
*/
public DsolGisException(final Throwable cause)
{
super(cause);
}
}