ServiceException.java [src/csip] Revision: beaf35d680e39fda49d78cf7e170b55dc5710c27 Date: Tue Apr 25 16:47:08 MDT 2017
/*
* $Id$
*
* This file is part of the Cloud Services Integration Platform (CSIP),
* a Model-as-a-Service framework, API and application suite.
*
* 2012-2017, Olaf David and others, 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 csip;
/**
* General Service Exception.
*
* @author Olaf David
*/
public class ServiceException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Exception Constructor
*
* @param message the exception message
*/
public ServiceException(String message) {
super(message);
}
/**
* Exception Constructor
*
* @param message
* @param cause
*/
public ServiceException(String message, Throwable cause) {
super(message, cause);
}
/**
* exception Constructor.
*
* @param cause
*/
public ServiceException(Throwable cause) {
super(cause);
}
}