Thrown when an exception occurs during configuration. Likely causes are badly specified configuration strings.

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

Examples

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

Inheritance Hierarchy

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

See Also