Visioscan Set SDK Libraries 1.0.14
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) : Exception(message) {}
10 WCommunicationException(String^ message, Exception^ inner) : Exception(message, inner) {}
11
12 property int ErrorCode {
13 int get() {
14 return _code;
15 }
16
17 void set(int x) {
18 _code = x;
19 }
20 }
21 private:
22 int _code = -1;
23 };
24}
25
Definition WBadAcknowledgmentException.h:3
Definition WCommunicationException.h:6
WCommunicationException(String^ message, Exception^ inner)
Definition WCommunicationException.h:10
WCommunicationException()
Definition WCommunicationException.h:8
property int ErrorCode
Definition WCommunicationException.h:12
WCommunicationException(String^ message)
Definition WCommunicationException.h:9