BloombergLP::bsls::AssertTestException::AssertTestException

Constructors

Synopses

Declared in <bsls_asserttestexception.h>

Create a AssertTestException object that is a copy of the specified original, having the same value for the expression, filename, and lineNumber attributes. Note that this constructor's definition is compiler generated.

constexpr
AssertTestException(AssertTestException const& original) = default;
» more...

Create a AssertTestException object whose value is that of specified original, having the same value for the expression, filename, and lineNumber attributes. Note that this constructor's definition is compiler generated.

constexpr
AssertTestException(AssertTestException&& original) = default;
» more...

Create a AssertTestException object with the specified expression, filename, lineNumber, and level. The behavior is undefined unless 0 < line and all of expression, filename, and level are NULL or point to valid null-terminated character strings.

AssertTestException(
    char const* expression,
    char const* filename,
    int lineNumber,
    char const* level = "UNKNOWN");
» more...