ProviderException
using System.Runtime.Serialization;
namespace System.Configuration.Provider
{
public class ProviderException : Exception
{
public ProviderException()
{
}
public ProviderException(string message)
: base(message)
{
}
public ProviderException(string message, Exception innerException)
: base(message, innerException)
{
}
protected ProviderException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
throw new PlatformNotSupportedException();
}
}
}