VMware GemFire Java API Reference
Package org.apache.geode.cache
Class GatewayException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
GatewayConfigurationException
public class GatewayException extends OperationAbortedException
An exception thrown by aGateway.- Since:
- GemFire 4.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GatewayException()Constructor.GatewayException(String msg)Constructor.GatewayException(String msg, Throwable cause)Constructor.GatewayException(Throwable cause)Constructor.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
GatewayException
public GatewayException()
Constructor. Creates a new instance ofGatewayException.
-
GatewayException
public GatewayException(String msg)
Constructor. Creates an instance ofGatewayExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
GatewayException
public GatewayException(String msg, Throwable cause)
Constructor. Creates an instance ofGatewayExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-
GatewayException
public GatewayException(Throwable cause)
Constructor. Creates an instance ofGatewayExceptionwith the specified cause.- Parameters:
cause- the causal Throwable
-
-