/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/24 13:16:27 by narnaud #+# #+# */ /* Updated: 2022/06/24 14:38:36 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "Bureaucrat.hpp" int main(void) { try { Bureaucrat crat__one("first", 1); Bureaucrat crat__two("last", 150); Bureaucrat crat__three("trash", 151); Bureaucrat crat__four("god", -55); } catch (std::exception & e) { cout << "Issue :" << e.what(); } }