Thrown whenever an API fails. In case of bulk operation, you even recieve information about existing keys or unavailable space wrapped within this exception.

Namespace: Alachisoft.NCache.Runtime.Exceptions
Assembly: Alachisoft.NCache.Runtime (in Alachisoft.NCache.Runtime.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
[SerializableAttribute]
public class OperationFailedException : CacheException
Visual Basic
<SerializableAttribute> _
Public Class OperationFailedException _
	Inherits CacheException
Visual C++
[SerializableAttribute]
public ref class OperationFailedException : public CacheException

Examples

The following example demonstrates how to use this exception in your code.
CopyC#
try
{
    ...
}
catch(OperationFailedException ex)
{
    ...
}

Inheritance Hierarchy

See Also