com.tangosol.coherence.rest.query.QueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coherence-rest Show documentation
Show all versions of coherence-rest Show documentation
Oracle Coherence Community Edition
/*
* Copyright (c) 2000, 2020, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
package com.tangosol.coherence.rest.query;
/**
* Query execution specific exception.
*
* @author ic 2011.12.04
*/
public class QueryException
extends RuntimeException
{
// ---- constructors ----------------------------------------------------
/**
* Construct an instance of QueryException.
*
* @param sMessage detail message
*/
public QueryException(String sMessage)
{
super(sMessage);
}
/**
* Construct an instance of QueryException.
*
* @param sMessage detail message
* @param cause the cause
*/
public QueryException(String sMessage, Throwable cause)
{
super(sMessage, cause);
}
/**
* Construct an instance of QueryException.
*
* @param cause the cause
*/
public QueryException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy