mscorlib(4.0.0.0) API with additions
SettingsPropertyNotFoundException.cs
2 
3 namespace System.Configuration
4 {
8  {
11  public SettingsPropertyNotFoundException(string message)
12  : base(message)
13  {
14  }
15 
19  public SettingsPropertyNotFoundException(string message, Exception innerException)
20  : base(message, innerException)
21  {
22  }
23 
28  : base(info, context)
29  {
30  }
31 
34  {
35  }
36  }
37 }
SettingsPropertyNotFoundException()
Initializes a new instance of the T:System.Configuration.SettingsPropertyNotFoundException class.
Definition: __Canon.cs:3
SettingsPropertyNotFoundException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Configuration.SettingsPropertyNotFoundException class,...
Describes the source and destination of a given serialized stream, and provides an additional caller-...
SettingsPropertyNotFoundException(string message)
Initializes a new instance of the T:System.Configuration.SettingsPropertyNotFoundException class,...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.
SettingsPropertyNotFoundException(string message, Exception innerException)
Initializes a new instance of the T:System.Configuration.SettingsPropertyNotFoundException class,...
Provides an exception for T:System.Configuration.SettingsProperty objects that are not found.