VMware GemFire Java API Reference
Package org.apache.geode.cache
Class EntryExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.cache.CacheException
-
- org.apache.geode.cache.EntryExistsException
-
- All Implemented Interfaces:
Serializable
public class EntryExistsException extends CacheException
Thrown when attempting to create aRegion.Entrythat already exists in theRegion.- Since:
- GemFire 3.0
- See Also:
Region.create(Object, Object),Region.Entry, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntryExistsException(String msg, Object oldValue)Constructs an instance ofEntryExistsExceptionwith the specified detail message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetOldValue()Returns the old existing value that caused this exception.voidsetOldValue(Object oldValue)Sets the old existing value that caused this exception.StringtoString()-
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
-
-
-
-
Method Detail
-
getOldValue
public Object getOldValue()
Returns the old existing value that caused this exception.- Returns:
- the old existing value that caused this exception
-
setOldValue
public void setOldValue(Object oldValue)
Sets the old existing value that caused this exception.- Parameters:
oldValue- the old existing value that caused this exception
-
toString
public String toString()
- Overrides:
toStringin classCacheException
-
-