NotEnoughMemoryException.cpp
Go to the documentation of this file.
1 // Copyright 2016 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 
16 
17 using namespace eprosima::fastcdr::exception;
18 
20  "Not enough memory in the buffer stream";
21 
23  const char* const& message) noexcept
24  : Exception(message)
25 {
26 }
27 
29  const NotEnoughMemoryException& ex) noexcept
30  : Exception(ex)
31 {
32 }
33 
35  NotEnoughMemoryException&& ex) noexcept
36  : Exception(std::move(ex))
37 {
38 }
39 
41  const NotEnoughMemoryException& ex) noexcept
42 {
43  if (this != &ex)
44  {
46  ex);
47  }
48 
49  return *this;
50 }
51 
53  NotEnoughMemoryException&& ex) noexcept
54 {
55  if (this != &ex)
56  {
58  std::move(ex));
59  }
60 
61  return *this;
62 }
63 
65 {
66 }
67 
69 {
70  throw *this;
71 }
eprosima::fastcdr::exception::NotEnoughMemoryException::NotEnoughMemoryException
Cdr_DllAPI NotEnoughMemoryException(const char *const &message) noexcept
Default constructor.
Definition: NotEnoughMemoryException.cpp:22
NotEnoughMemoryException.h
eprosima::fastcdr::exception::NotEnoughMemoryException::raise
Cdr_DllAPI void raise() const override
This function throws the object as exception.
Definition: NotEnoughMemoryException.cpp:68
backward::details::move
const T & move(const T &v)
Definition: backward.hpp:394
eprosima::fastcdr::exception::Exception::operator=
Cdr_DllAPI Exception & operator=(const Exception &ex) noexcept
Assigment operation.
Definition: Exception.cpp:37
eprosima::fastcdr::exception::Exception
This abstract class is used to create exceptions.
Definition: Exception.h:29
eprosima::fastcdr::exception::NotEnoughMemoryException
This class is thrown as an exception when the buffer's internal memory reachs its size limit.
Definition: NotEnoughMemoryException.h:27
eprosima::fastcdr::exception
Definition: BadOptionalAccessException.hpp:22
eprosima::fastcdr::exception::NotEnoughMemoryException::~NotEnoughMemoryException
virtual Cdr_DllAPI ~NotEnoughMemoryException() noexcept
Default destructor.
Definition: NotEnoughMemoryException.cpp:64
eprosima::fastcdr::exception::NotEnoughMemoryException::operator=
Cdr_DllAPI NotEnoughMemoryException & operator=(const NotEnoughMemoryException &ex) noexcept
Assigment operation.
Definition: NotEnoughMemoryException.cpp:40
eprosima::fastcdr::exception::NotEnoughMemoryException::NOT_ENOUGH_MEMORY_MESSAGE_DEFAULT
static const Cdr_DllAPI char *const NOT_ENOUGH_MEMORY_MESSAGE_DEFAULT
Default message used in the library.
Definition: NotEnoughMemoryException.h:78


plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Aug 11 2024 02:24:23