package nl.tudelft.simulation.dsol.animation.gis; /** * DSOLGisException for exceptions when reading or drawing GIS layers. *
* Copyright (c) 2020-2022 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); } }