📄 configurationexception.cs
字号:
//===============================================================================
// Microsoft patterns & practices
// Mobile Client Software Factory - July 2006
//===============================================================================
// Copyright Microsoft Corporation. All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================
// The example companies, organizations, products, domain names,
// e-mail addresses, logos, people, places, and events depicted
// herein are fictitious. No association with any real company,
// organization, product, domain name, email address, logo, person,
// places, or events is intended or should be inferred.
//===============================================================================
using System;
/* Not available in .NET CF
using System.Runtime.Serialization;
*/
namespace Microsoft.Practices.Mobile.Configuration
{
/// <summary>
/// An exception thrown by the configuration classes.
/// </summary>
/* Not available in .NET CF
[Serializable]
*/
public class ConfigurationException : Exception
{
/// <summary>
/// Initializes a new instance of the System.Exception class.
/// </summary>
public ConfigurationException() : base() { }
/// <summary>
/// Initializes a new instance of the System.Exception class with a specified error message.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public ConfigurationException(string message) : base(message) { }
/// <summary>
/// Initializes a new instance of the System.Exception class with a specified error message
/// and a reference to the inner exception that is the cause of this exception.
/// </summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception,
/// or a null reference if no inner exception is specified.</param>
public ConfigurationException(string message, Exception innerException) : base(message, innerException) { }
/* Not available in .NET CF
/// <summary>
/// Initializes a new instance of the System.Exception class with serialized data.
/// </summary>
/// <param name="info">The System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination.</param>
protected ConfigurationException(SerializationInfo info, StreamingContext context) : base(info, context) { }
*/
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -