8 #include "Arp/System/Commons/Exceptions/ArgumentException.hpp"    11 namespace Arp { 
namespace System { 
namespace Commons
    18     template<
typename... Args>
    26     virtual ~ArgumentNullException(
void) = 
default;
    29     static ArgumentNullException 
Create(
const char* paramName);
    30     static ArgumentNullException 
Create(
const char* paramName, 
const Exception& innerException);
    36     ArgumentNullException& operator=(
const ArgumentNullException& arg) = 
delete;
    39     static const char* 
const defaultMessage;
    46 template<
typename... Args>
 static ArgumentNullException Create(const char *paramName)
Creates an ArgumentNullException instance using a default message text.
Definition: ArgumentNullException.hpp:77
 
String Format(int indentLevel, bool withInnerException) const override
Formats this exception using the given indent level.
 
Namespace of the C++ standard library
 
This exception is used when an invalid <null> argument occurs.
Definition: ArgumentNullException.hpp:15
 
ArgumentNullException(const char *message, const Args &... args)
Constructs an ArgumentNullException instance.
Definition: ArgumentNullException.hpp:47
 
std::shared_ptr< Exception > Ptr
The smart pointer tpye of this class.
Definition: Exception.hpp:19
 
ExceptionTypeId
Specifies the type id of any exception derived by <see cref="CommonException".
Definition: ExceptionTypeId.hpp:14
 
This exception is used when an invalid argument occurs.
Definition: ArgumentException.hpp:14
 
Root namespace for the PLCnext API
 
System components used by the System, Device, Plc or Io domains.
 
Exception::Ptr Clone(void) const override
Clones this instance.
 
This is the base class of all Arp exception classes.
Definition: Exception.hpp:15