InsufficientMemoryException 构造函数

定义

初始化 InsufficientMemoryException 类的新实例。

重载

InsufficientMemoryException()

使用说明错误的系统提供的消息初始化 InsufficientMemoryException 类的新实例。

InsufficientMemoryException(String)

使用说明错误的指定消息初始化 InsufficientMemoryException 类的新实例。

InsufficientMemoryException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 InsufficientMemoryException 类的新实例。

InsufficientMemoryException()

使用说明错误的系统提供的消息初始化 InsufficientMemoryException 类的新实例。

public:
 InsufficientMemoryException();
public InsufficientMemoryException ();
Public Sub New ()

注解

此构造函数将 Message 新实例的属性初始化为系统提供的消息,该消息描述错误,例如“可用内存不足,无法满足操作的预期需求。 请稍后再试。” 此消息会考虑当前系统区域性。

下表显示了 InsufficientMemoryException 实例的初始属性值。

properties
InnerException null.
Message 本地化的错误消息字符串。

另请参阅

适用于

InsufficientMemoryException(String)

使用说明错误的指定消息初始化 InsufficientMemoryException 类的新实例。

public:
 InsufficientMemoryException(System::String ^ message);
public InsufficientMemoryException (string? message);
public InsufficientMemoryException (string message);
new InsufficientMemoryException : string -> InsufficientMemoryException
Public Sub New (message As String)

参数

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

注解

下表显示了 InsufficientMemoryException 实例的初始属性值。

properties
InnerException null.
Message message 中指定的错误消息字符串。

另请参阅

适用于

InsufficientMemoryException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 InsufficientMemoryException 类的新实例。

public:
 InsufficientMemoryException(System::String ^ message, Exception ^ innerException);
public InsufficientMemoryException (string? message, Exception? innerException);
public InsufficientMemoryException (string message, Exception innerException);
new InsufficientMemoryException : string * Exception -> InsufficientMemoryException
Public Sub New (message As String, innerException As Exception)

参数

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

innerException
Exception

导致当前异常的异常。 如果 innerException 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

注解

因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null

下表显示了 InsufficientMemoryException 实例的初始属性值。

properties
InnerException null.
Message message 中指定的错误消息字符串。

另请参阅

适用于