SystemException 类

System 命名空间中的预定义异常定义基类。

**命名空间:**System
**程序集:**mscorlib(在 mscorlib.dll 中)

语法

声明
<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public Class SystemException
    Inherits Exception
用法
Dim instance As SystemException
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public class SystemException : Exception
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public ref class SystemException : public Exception
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public class SystemException extends Exception
SerializableAttribute 
ComVisibleAttribute(true) 
public class SystemException extends Exception

备注

此类是作为一种方法提供的,该方法用于在系统定义的异常和应用程序定义的异常之间进行区分。

SystemException 不提供导致 Exception 原因的信息。大多数情况下都不应引发此类的实例。如果此类被实例化,则描述该错误的可读消息应传递给构造函数。

当发生非致命的、可由用户程序恢复的错误时,公共语言运行时引发 SystemException。这些错误是由运行时检查失败引起的(如数组超出界限的错误),可以在任何方法的执行过程中发生。SystemException 不向 Exception 添加新功能。

SystemException 使用值为 0x80131501 的 HRESULT COR_E_SYSTEM。

有关 SystemException 实例的初始属性值列表,请参见 SystemException 构造函数。

有关由应用程序定义的异常的更多信息,请参见 ApplicationException

继承层次结构

System.Object
   System.Exception
    System.SystemException
       派生类

线程安全

此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

SystemException 成员
System 命名空间
Exception 类

其他资源

处理和引发异常