Visioscan Set SDK Libraries 1.0.28
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
WParameterNotSupportedException.h
1#pragma once
2using namespace System;
3namespace WToolboxException {
4 [Serializable]
5 public ref class WParameterNotSupportedException : public Exception
6 {
7 public:
9 WParameterNotSupportedException(String^ message, String^ translateCode) : Exception(message) { _translateCode = translateCode; }
10 WParameterNotSupportedException(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}
Definition WBadAcknowledgmentException.h:3
Definition WParameterNotSupportedException.h:6
WParameterNotSupportedException(String^ message, Exception^ inner, String^ translateCode)
Definition WParameterNotSupportedException.h:10
WParameterNotSupportedException(String^ message, String^ translateCode)
Definition WParameterNotSupportedException.h:9
property String TranslateCode
Definition WParameterNotSupportedException.h:12
WParameterNotSupportedException()
Definition WParameterNotSupportedException.h:8