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