You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
242 B

#include <stdexcept>
#include <error.hh>
#include <init.hh>
int main(int argc, char** argv) try {
init::ensure();
return 0;
} catch(error::Fatal& fatal) {
} catch(error::Error& err) {
} catch(std::exception& se) {
} catch(...) {
}