#include <stdexcept>
#include <iostream>

int main(){
    try {
        throw std::logic_error{"Whoops"};
    }
    catch (const std::exception& ex) {
        std::cout << ex.what() << std::endl;
    }
}