kernel::Notifications::fatalError

The fatal error notification is sent to notify the user when an error occurs in kernel code that can't be recovered from. After this notification is sent, whatever function triggered the error should also return an error code or raise an exception. Applications can choose to handle the fatal error notification by logging the error, or notifying the user, or triggering an early shutdown as a precaution against causing more errors.

Synopsis

Declared in <kernel/notifications_interface.h>

virtual
void
fatalError(bilingual_str const& message);

Parameters

NameDescription
messageHuman-readable description of the fatal error.