FileNotFoundException 构造函数

定义

用可选消息字符串和内部 Exception 引用初始化 FileNotFoundException 类的新实例。

重载

FileNotFoundException()

初始化 FileNotFoundException 类的新实例,将其消息字符串设置为系统提供的消息。

FileNotFoundException(String)

用指定的错误消息初始化 FileNotFoundException 类的新实例。

FileNotFoundException(SerializationInfo, StreamingContext)
已过时.

使用指定的序列化和上下文信息初始化 FileNotFoundException 类的新实例。

FileNotFoundException(String, Exception)

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

FileNotFoundException(String, String)

使用指定错误信息和找不到的文件名来初始化 FileNotFoundException 类的新实例。

FileNotFoundException(String, String, Exception)

使用指定的错误信息、找不到的文件名和对作为此异常原因的内部异常的引用来初始化 FileNotFoundException 类的新实例。

FileNotFoundException()

Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs

初始化 FileNotFoundException 类的新实例,将其消息字符串设置为系统提供的消息。

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

注解

此构造函数将 Message 新 实例的 属性初始化为系统提供的消息,该消息描述错误,例如“找不到指定的文件”。此消息考虑了当前系统区域性。

另请参阅

适用于

FileNotFoundException(String)

Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs

用指定的错误消息初始化 FileNotFoundException 类的新实例。

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

参数

message
String

对错误的说明。 message 的内容设计为易于理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

注解

此构造函数使用 message初始化Message新实例的 属性。

另请参阅

适用于

FileNotFoundException(SerializationInfo, StreamingContext)

Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs

注意

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

使用指定的序列化和上下文信息初始化 FileNotFoundException 类的新实例。

protected:
 FileNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected FileNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected FileNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.FileNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.FileNotFoundException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.IO.FileNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.FileNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

保存有关所引发异常的序列化对象数据的对象。

context
StreamingContext

一个包含有关源或目标的上下文信息的对象。

属性

另请参阅

适用于

FileNotFoundException(String, Exception)

Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs

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

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

参数

message
String

对错误的说明。 message 的内容设计为易于理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

innerException
Exception

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

注解

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

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

properties “值”
InnerException 内部异常引用。
Message 错误消息字符串。

有关内部异常的详细信息,请参阅 InnerException

另请参阅

适用于

FileNotFoundException(String, String)

Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs

使用指定错误信息和找不到的文件名来初始化 FileNotFoundException 类的新实例。

public:
 FileNotFoundException(System::String ^ message, System::String ^ fileName);
public FileNotFoundException (string message, string fileName);
public FileNotFoundException (string? message, string? fileName);
new System.IO.FileNotFoundException : string * string -> System.IO.FileNotFoundException
Public Sub New (message As String, fileName As String)

参数

message
String

错误说明,或 null,以结合使用系统提供的消息和给定 fileNamemessage 的内容应易于用户理解。 此构造函数的调用方必须确保此字符串已针对当前系统区域性进行了本地化。

fileName
String

包含无效图像的文件的全名。

注解

构造函数使用 初始化新实例的 属性,FileName并使用 messagefileName初始化 Message 属性。

另请参阅

适用于

FileNotFoundException(String, String, Exception)

Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs
Source:
FileNotFoundException.cs

使用指定的错误信息、找不到的文件名和对作为此异常原因的内部异常的引用来初始化 FileNotFoundException 类的新实例。

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

参数

message
String

解释异常原因的错误消息。

fileName
String

包含无效图像的文件的全名。

innerException
Exception

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

注解

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

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

properties “值”
InnerException 内部异常引用。
Message 错误消息字符串。

有关内部异常的详细信息,请参阅 InnerException

另请参阅

适用于