8#include "Arp/Base/Core/PimplPtr.hxx" 
    9#include "Arp/Base/Core/Exception.hpp" 
   10#include "Arp/Base/Core/ExceptionTypeId.hpp" 
   11#include "Arp/Base/Commons/Runtime/Stacktrace.hpp" 
   12#include "Arp/Base/Commons/Runtime/StackCounter.hpp" 
   13#include "Arp/Base/Commons/Arp.Base.Commons.hpp" 
   15namespace Arp::Base::Commons::Exceptions
 
   31    using StacktraceItems = Arp::Base::Commons::Runtime::Stacktrace::Items;
 
   49    const StacktraceItems&  GetStacktraceItems(
void)
const;
 
   52    String  Format(
bool withInnerException)
const override;
 
This class serves as base class for all Arp commons exceptions.
Definition: CommonExceptionBase.hpp:24
 
CommonExceptionBase(CommonExceptionBase &&arg) noexcept
Default move constructor.
 
CommonExceptionBase & operator=(CommonExceptionBase &&arg) noexcept
Default move-assignment operator.
 
CommonExceptionBase & operator=(const CommonExceptionBase &arg)
Default copy-assignment operator.
 
~CommonExceptionBase(void) override
Default destructor.
 
CommonExceptionBase(const CommonExceptionBase &arg)
Default copy constructor.
 
This class is used to count sequenced operation calls, which are e.g. invoked during an exception thr...
Definition: StackCounter.hpp:20
 
This class provides a stacktrace.
Definition: Stacktrace.hpp:15
 
This is the base class of all Arp exception classes.
Definition: Exception.hpp:21
 
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
 
ExceptionTypeId
Specifies the type id of any exception derived by <see cref="CommonException".
Definition: ExceptionTypeId.hpp:15