Visioscan Set SDK Libraries 1.0.28
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
WCommunicationException.h
1#pragma once
2using namespace System;
3namespace WToolboxException {
4 [Serializable]
5 public ref class WCommunicationException : public Exception
6 {
7 public:
8 WCommunicationException() : Exception() {}
9 WCommunicationException(String^ message, String^ translateCode) : Exception(message) { _translateCode = translateCode; }
10 WCommunicationException(String^ message, Exception^ inner, String^ translateCode) : Exception(message, inner) { _translateCode = translateCode; }
11
12 property int ErrorCode {
13 int get() {
14 return _code;
15 }
16
17 void set(int x) {
18 _code = x;
19 }
20 }
21
22 property String^ TranslateCode {
23 String^ get() {
24 return _translateCode;
25 }
26 }
27 private:
28 int _code = -1;
30 };
31}
32
Definition WBadAcknowledgmentException.h:3
Definition WCommunicationException.h:6
WCommunicationException(String^ message, String^ translateCode)
Definition WCommunicationException.h:9
String _translateCode
Definition WCommunicationException.h:29
WCommunicationException()
Definition WCommunicationException.h:8
property int ErrorCode
Definition WCommunicationException.h:12
WCommunicationException(String^ message, Exception^ inner, String^ translateCode)
Definition WCommunicationException.h:10