This exception is thrown when multiple exceptions occur from multiple nodes. It combines all the exceptions as inner exceptions and throw it to the client application.

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 AggregateException : CacheException
Visual Basic
<SerializableAttribute> _
Public Class AggregateException _
	Inherits CacheException
Visual C++
[SerializableAttribute]
public ref class AggregateException : public CacheException

Examples

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

Inheritance Hierarchy

System..::..Object
  System..::..Exception
    Alachisoft.NCache.Runtime.Exceptions..::..CacheException
      Alachisoft.NCache.Runtime.Exceptions..::..AggregateException

See Also