Gemfire JavaDocs_test
Package org.apache.geode.cache
Class VersionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.geode.GemFireCheckedException
-
- org.apache.geode.cache.VersionException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
IncompatibleVersionException
,UnsupportedVersionException
public abstract class VersionException extends GemFireCheckedException
AnVersionException
is an exception that indicates a client / server version mismatch exception has occurred.- Since:
- GemFire 5.7
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VersionException()
Constructs a newVersionException
.VersionException(java.lang.String s)
Constructs a newVersionException
with a message string.VersionException(java.lang.String s, java.lang.Throwable cause)
Constructs aVersionException
with a message string and a base exceptionVersionException(java.lang.Throwable cause)
Constructs aVersionException
with a cause
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireCheckedException
getRootCause
-
-
-
-
Constructor Detail
-
VersionException
public VersionException()
Constructs a newVersionException
.
-
VersionException
public VersionException(java.lang.String s)
Constructs a newVersionException
with a message string.- Parameters:
s
- the detail message
-
VersionException
public VersionException(java.lang.String s, java.lang.Throwable cause)
Constructs aVersionException
with a message string and a base exception- Parameters:
s
- the detail messagecause
- the cause
-
VersionException
public VersionException(java.lang.Throwable cause)
Constructs aVersionException
with a cause- Parameters:
cause
- the cause
-
-