Ejemplo n.º 1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 /// <param name="message">A message that describes the error.</param>
 /// <param name="innerException">The exception that is the cause of the current exception. If the innerException
 /// parameter is not a null reference, the current exception is raised in a catch
 /// block that handles the inner exception.</param>
 public ConfigurationException(ConfigurationIssue issue, string message, Exception innerException)
     : base(message, innerException)
 {
     this.issue = issue;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 /// <param name="message">A message that describes the error.</param>
 public ConfigurationException(ConfigurationIssue issue, string message)
     : this(issue, message, null)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 /// <param name="innerException">The exception that is the cause of the current exception. If the innerException
 /// parameter is not a null reference, the current exception is raised in a catch
 /// block that handles the inner exception.</param>
 public ConfigurationException(ConfigurationIssue issue, Exception innerException)
     : this(issue, innerException == null ? string.Empty : innerException.Message, innerException)
 {
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 public ConfigurationException(ConfigurationIssue issue)
     : this(issue, string.Empty)
 {
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 /// <param name="message">A message that describes the error.</param>
 /// <param name="innerException">The exception that is the cause of the current exception. If the innerException
 /// parameter is not a null reference, the current exception is raised in a catch
 /// block that handles the inner exception.</param>
 public ConfigurationException(ConfigurationIssue issue, string message, Exception innerException)
     : base(message, innerException)
 {
     this.issue = issue;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 /// <param name="innerException">The exception that is the cause of the current exception. If the innerException
 /// parameter is not a null reference, the current exception is raised in a catch
 /// block that handles the inner exception.</param>
 public ConfigurationException(ConfigurationIssue issue, Exception innerException)
     : this(issue, innerException == null ? string.Empty : innerException.Message, innerException)
 {
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 /// <param name="message">A message that describes the error.</param>
 public ConfigurationException(ConfigurationIssue issue, string message)
     : this(issue, message, null)
 {
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="issue">Configuration Issue</param>
 public ConfigurationException(ConfigurationIssue issue)
     : this(issue, string.Empty)
 {
 }