PLCnext API Documentation 25.0.2.69
DataAccessError.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/Base/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
13{
14
19{
23 None = 0,
24
28 NotExists = 1,
29
33 NotAuthorized = 2,
34
42 TypeMismatch = 3,
43
51
59
66 IndexOutOfRange = 6,
67
71 NotImplemented = 7,
72
76 NotSupported = 8,
77
82
87
91 NoData = 11,
92
96 InvalidConfig = 12,
97
102
110
114 Unspecified = 255,
115};
116
118// global stream operators of enum DataAccessError for logging and parsing
119ARP_EXPORT std::ostream& operator<<(std::ostream& os, DataAccessError value);
120ARP_EXPORT std::istream& operator>>(std::istream& is, DataAccessError& value);
121
122} // end of namespace Arp::Plc::Gds::Services
123
125// template specialization of DataAccessError formatter
126template<> struct fmt::formatter<Arp::Plc::Gds::Services::DataAccessError> : public fmt::ostream_formatter {};
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
Namespace for services of the Global Data Space (GDS)
DataAccessError
This enumeration contains the possible data access errors.
Definition: DataAccessError.hpp:19
@ UnvalidSubscription
Invalid subscription.
@ TypeMismatch
During a write operation the type of the value is not suitable for the particular variable.
@ NotExists
The variable does not exist.
@ PortNameSemanticError
The semantic of the name of the variable as given during a write or read operation is semantically no...
@ StringConversionFailed
The string conversion failed with an error.
@ StringLengthExceeds
The string length exceeds.
@ PortNameSyntaxError
The name of the variable as given during a write or read operation is syntactically not correct.
@ CurrentlyUnavailable
The requested service is currently not available.
@ NoData
No data exists for the requested time range
Root namespace for the PLCnext API