C# Class SuperMap.Connector.Utility.ServiceException

访问服务时出错引发的异常。
Inheritance: System.Exception
Mostra file Open project: SuperMap/iClient-for-DotNet Class Usage Examples

Public Methods

Method Description
ServiceException ( ) : System

默认的构造函数。

ServiceException ( string message, int code, Exception innerException ) : System

使用指定的错误消息和错误的响应状态码初始化 ServiceException 类的新实例。

Method Details

ServiceException() public method

默认的构造函数。
public ServiceException ( ) : System
return System

ServiceException() public method

使用指定的错误消息和错误的响应状态码初始化 ServiceException 类的新实例。
public ServiceException ( string message, int code, Exception innerException ) : System
message string 错误消息。
code int 响应状态码。
innerException System.Exception 嵌套异常。
return System