Fast DDS  Version 3.6.1.0
Fast DDS
RemoteExceptionCode_t.hpp
1 // Copyright 2025 Proyectos y Sistemas de Mantenimiento SL (eProsima).
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef FASTDDS_DDS_RPC__REMOTEEXCEPTIONCODE_T_HPP
16 #define FASTDDS_DDS_RPC__REMOTEEXCEPTIONCODE_T_HPP
17 
18 #include <cstdint>
19 
20 namespace eprosima {
21 namespace fastdds {
22 namespace dds {
23 namespace rpc {
24 
29 enum class RemoteExceptionCode_t : int32_t
30 {
43 };
44 
45 } // namespace rpc
46 } // namespace dds
47 } // namespace fastdds
48 } // namespace eprosima
49 
50 #endif // FASTDDS_DDS_RPC__REMOTEEXCEPTIONCODE_T_HPP
Definition: DomainParticipant.hpp:46
RemoteExceptionCode_t
Enumeration of possible error codes that can be returned by a remote service.
Definition: RemoteExceptionCode_t.hpp:30
@ REMOTE_EX_UNKNOWN_EXCEPTION
A generic, unspecified exception was raised by the service implementation.
@ REMOTE_EX_OUT_OF_RESOURCES
The remote service ran out of resources while processing the request.
@ REMOTE_EX_OK
The request was executed successfully.
@ REMOTE_EX_UNKNOWN_OPERATION
The operation called is unknown.
@ REMOTE_EX_UNSUPPORTED
Operation is valid but it is unsupported (a.k.a. not implemented).
@ REMOTE_EX_INVALID_ARGUMENT
The value of a parameter passed has an illegal value.