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