Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of RfcException class with a specified error message
 /// </summary>
 /// <param name="message"></param>
 /// <param name="innerException"></param>
 /// <param name="errorInfo">RFC error info</param>
 internal RfcException(string message, Exception innerException, Interop.RfcInterop.RFC_ERROR_INFO errorInfo) : this(message, innerException, new RfcErrorInfo(errorInfo))
 {
 }
Beispiel #2
0
 /// <summary>
 ///  Initializes a new instance of RfcException class with a specified error message
 /// </summary>
 /// <param name="errorInfo">RFC error info</param>
 internal RfcException(Interop.RfcInterop.RFC_ERROR_INFO errorInfo) : this(new RfcErrorInfo(errorInfo))
 {
 }