DataServiceException 构造函数 (String, Exception)

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

命名空间:  System.Data.Services
程序集:  Microsoft.Data.Services(在 Microsoft.Data.Services.dll 中)

语法

声明
Public Sub New ( _
    message As String, _
    innerException As Exception _
)
用法
Dim message As String
Dim innerException As Exception

Dim instance As New DataServiceException(message, _
    innerException)
public DataServiceException(
    string message,
    Exception innerException
)
public:
DataServiceException(
    String^ message, 
    Exception^ innerException
)
new : 
        message:string * 
        innerException:Exception -> DataServiceException
public function DataServiceException(
    message : String, 
    innerException : Exception
)

参数

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

注释

因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性返回的值与传递到构造函数中的值相同;或者,如果 InnerException 属性没有向构造函数提供内部异常值,则为 nullnull 引用(在 Visual Basic 中为 Nothing)。

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

属性

InnerException

nullnull 引用(在 Visual Basic 中为 Nothing)。

Message

message 中指定的错误消息字符串。

请参阅

参考

DataServiceException 类

DataServiceException 重载

System.Data.Services 命名空间

其他资源

Handling and Throwing Exceptions