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