PLCnext API Documentation 23.6.0.37
ErrorCode.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
12namespace Arp { namespace Services { namespace DataLogger { namespace Services
13{
14
18enum class ErrorCode : uint8
19{
23 None = 0,
24
28 NoSuchSession = 1,
29
34
39
43 AlreadyExists = 4,
44
48 OutOfMemory = 5,
49
53 NotSupported = 6,
54
58 NoData = 7,
59
66
70 InvalidConfig = 9,
71
75 Unspecified = 255,
76};
77
79// global stream operators of enum ErrorCode for logging and parsing
80ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, ErrorCode value);
81ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, ErrorCode& value);
82
83}}}} // end of namespace Arp::Services::DataLogger::Services
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:28
ErrorCode
Possible error codes for data-logger rsc services.
Definition: ErrorCode.hpp:19
@ NoSuchSession
The specified session does not exist.
@ SessionRunning
The specified session is in running state.
@ NoSuchVariable
The specified variable does not exists.
@ NoData
No data exists for the requested time range
@ DataUnavailable
Expected data is unavailable for the requested time range due to an unmounted volume an off-line arch...
Root namespace for the PLCnext API