Package org.apache.geode.cache
Class TimeoutException
- All Implemented Interfaces:
Serializable
Thrown if a
netSearch times out without getting a response back from a cache, or
when attempting to acquire a distributed lock.- Since:
- GemFire 3.0
- See Also:
-
LoaderHelper.netSearch(boolean)Region.invalidateRegion()Region.destroyRegion()Region.createSubregion(java.lang.String, org.apache.geode.cache.RegionAttributes<SK, SV>)Region.get(Object)Region.put(Object, Object)Region.create(Object, Object)Region.invalidate(Object)Region.destroy(Object)DistributedLockService- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofTimeoutExceptionwithout detail message.TimeoutException(String msg) Constructs an instance ofTimeoutExceptionwith the specified detail message.TimeoutException(String msg, Throwable cause) Constructs an instance ofTimeoutExceptionwith the specified detail message and cause.TimeoutException(Throwable cause) Constructs an instance ofTimeoutExceptionwith the specified cause. -
Method Summary
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toStringMethods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
TimeoutException
public TimeoutException()Creates a new instance ofTimeoutExceptionwithout detail message. -
TimeoutException
Constructs an instance ofTimeoutExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
TimeoutException
Constructs an instance ofTimeoutExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-
TimeoutException
Constructs an instance ofTimeoutExceptionwith the specified cause.- Parameters:
cause- the causal Throwable
-