Class GeneralFailureException
Thrown when an exception occurs during a clustered operation.
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
[Serializable]
public class GeneralFailureException : CacheException, ISerializable, _Exception
Examples
The following example demonstrates how to use this exception in your code.
try
{
...
}
catch(GeneralFailureException ex)
{
...
}
Constructors
| Name | Description |
|---|---|
| GeneralFailureException() | Default constructor. |
| GeneralFailureException(Int32) | Overloaded constructor |
| GeneralFailureException(Int32, String) | Overloaded constructor |
| GeneralFailureException(Int32, String, Exception) | Overloaded constructor |
| GeneralFailureException(Int32, String, String) | Overloaded constructor |
| GeneralFailureException(SerializationInfo, StreamingContext) | overloaded constructor, manual serialization. |
| GeneralFailureException(String) | Overloaded constructor, takes the reason as parameter. |
| GeneralFailureException(String, Exception) | Overloaded constructor. |