OciException 构造函数

定义

创建 OciException 类的新实例。

重载

OciException()

创建 OciException 类的新实例。

OciException(String)

使用指定的错误消息创建 OciException 类的新实例。

OciException(SerializationInfo, StreamingContext)

使用序列化的数据创建 OciException 类的新实例。

OciException(String, Exception)

使用指定的错误消息和对导致此异常的内部异常的引用创建 OciException 类的新实例。

OciException()

创建 OciException 类的新实例。

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

注解

此构造函数将新实例的 Message 属性初始化为系统提供的错误描述消息。

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

properties
InnerException 空引用。
Message 系统提供的本地化说明。

适用于

OciException(String)

使用指定的错误消息创建 OciException 类的新实例。

public:
 OciException(System::String ^ message);
public OciException (string message);
new Microsoft.SqlServer.Replication.OciException : string -> Microsoft.SqlServer.Replication.OciException
Public Sub New (message As String)

参数

message
String

描述错误的消息。

注解

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

properties
InnerException 空引用。
Message 错误消息字符串。

适用于

OciException(SerializationInfo, StreamingContext)

使用序列化的数据创建 OciException 类的新实例。

protected:
 OciException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected OciException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.SqlServer.Replication.OciException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.SqlServer.Replication.OciException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

承载序列化对象数据的对象。

context
StreamingContext

关于来源和目标的上下文信息

注解

在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。

适用于

OciException(String, Exception)

使用指定的错误消息和对导致此异常的内部异常的引用创建 OciException 类的新实例。

public:
 OciException(System::String ^ message, Exception ^ innerException);
public OciException (string message, Exception innerException);
new Microsoft.SqlServer.Replication.OciException : string * Exception -> Microsoft.SqlServer.Replication.OciException
Public Sub New (message As String, innerException As Exception)

参数

message
String

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

innerException
Exception

导致当前异常的异常。

注解

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

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

适用于