Gemfire JavaDocs
Package org.apache.geode.cache
Class GatewayException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.cache.CacheRuntimeException
-
- org.apache.geode.cache.OperationAbortedException
-
- org.apache.geode.cache.GatewayException
-
- All Implemented Interfaces:
java.io.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(java.lang.String msg)
Constructor.GatewayException(java.lang.String msg, java.lang.Throwable cause)
Constructor.GatewayException(java.lang.Throwable cause)
Constructor.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
GatewayException
public GatewayException()
Constructor. Creates a new instance ofGatewayException
.
-
GatewayException
public GatewayException(java.lang.String msg)
Constructor. Creates an instance ofGatewayException
with the specified detail message.- Parameters:
msg
- the detail message
-
GatewayException
public GatewayException(java.lang.String msg, java.lang.Throwable cause)
Constructor. Creates an instance ofGatewayException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the causal Throwable
-
GatewayException
public GatewayException(java.lang.Throwable cause)
Constructor. Creates an instance ofGatewayException
with the specified cause.- Parameters:
cause
- the causal Throwable
-
-