GISObjectException.java [src/gisobjects] Revision: Date:
/*
* $Id$
*
* This file is part of the Cloud Services Integration Platform (CSIP),
* a Model-as-a-Service framework, API, and application suite.
*
* 2012-2017, OMSLab, Colorado State University.
*
* OMSLab licenses this file to you under the MIT license.
* See the LICENSE file in the project root for more information.
*/
package gisobjects;
/**
*
* @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
*/
public class GISObjectException extends Exception {
public GISObjectException() {
}
public GISObjectException(String message) {
super(message);
}
public GISObjectException(String message, Throwable cause) {
super(message, cause);
}
public GISObjectException(Throwable cause) {
super(cause);
}
public GISObjectException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}