8#include "Arp/Base/Core/PimplPtr.hxx" 
    9#include "Arp/Base/Commons/Exceptions/CommonExceptionBase.hpp" 
   11namespace Arp::Base::Commons::Exceptions::Io
 
   22    template<
typename... Args>
 
   23    explicit IoException(
const char* message, 
const Args& ... args);
 
   47    const Impl& GetImpl(
void)
const;
 
   72template<
typename... Args>
 
This class serves as base class for all Arp commons exceptions.
Definition: CommonExceptionBase.hpp:24
 
This exception is thrown when an unspecified IO error occurs.
Definition: IoException.hpp:17
 
IoException(const char *message, const Args &... args)
Creates an IoException with message.
Definition: IoException.hpp:73
 
IoException & operator=(const IoException &arg)
Default copy-assignment operator.
 
IoException & operator=(IoException &&arg) noexcept
Default move-assignment operator.
 
IoException(IoException &&arg) noexcept
Default move constructor.
 
IoException(const IoException &arg)
Default copy constructor.
 
~IoException(void) override
Default destructor.
 
This class is used to count sequenced operation calls, which are e.g. invoked during an exception thr...
Definition: StackCounter.hpp:20
 
This is the base class of all Arp exception classes.
Definition: Exception.hpp:21
 
std::unique_ptr< Exception > Ptr
The smart pointer type of this class.
Definition: Exception.hpp:27
 
Adapter class to implement PImpl idiom.
Definition: PimplPtr.hxx:15
 
This class represents the Arp String. The implementation is based on std::string.
Definition: String.hpp:39
 
@ Create
Creates a new file. If the file already exists, it is overwritten.
 
ExceptionTypeId
Specifies the type id of any exception derived by <see cref="CommonException".
Definition: ExceptionTypeId.hpp:15