ORIGINAL
Loading...
Searching...
No Matches
original::staticError< ERR, TRIGGERING_CONDITION > Class Template Reference

Compile-time error assertion utility. More...

#include <error.h>

Collaboration diagram for original::staticError< ERR, TRIGGERING_CONDITION >:
Collaboration graph

Detailed Description

template<typename ERR, const bool TRIGGERING_CONDITION>
requires ExtendsOf<error, ERR>
class original::staticError< ERR, TRIGGERING_CONDITION >

Compile-time error assertion utility.

Template Parameters
ERRException type to associate with the static assertion (must inherit from error)
TRIGGERING_CONDITIONBoolean condition triggering the assertion when true

Enforces compile-time constraints by triggering static assertions with exception-specific error messages. The assertion fires when TRIGGERING_CONDITION evaluates to true.

@requires ExtendsOf<error, ERR> (ERR must inherit from error)

template<typename T>
void validate() {
}
// Triggers "Wrong value given" static assertion if T isn't arithmetic
Compile-time error assertion utility.
Definition error.h:73

The documentation for this class was generated from the following file: