Class ConfigurationException
Thrown when an exception occurs during configuration. Likely causes are badly specified configuration strings.
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class ConfigurationException : CacheException
Examples
The following example demonstrates how to use this exception in your code.
try
{
...
}
catch(ConfigurationException ex)
{
...
}
Name | Description |
---|---|
ConfigurationException() | default constructor. |
ConfigurationException(SerializationInfo, StreamingContext) | overloaded constructor, manual serialization. |
ConfigurationException(String) | overloaded constructor, takes the reason as parameter. |
ConfigurationException(String, Exception) | overloaded constructor. |