#include <fstream>
#include <stdexcept>

int main()
{
    // attempting to open a file...
    if (auto file = std::ifstream("hello.txt"); not file) {
        throw std::runtime_error("Error: file not found.\n");
    }
}