SObjectizer  5.5
so_5/exception_reaction/main.cpp
/*
* A sample for the exception reaction.
*/
#include <iostream>
#include <stdexcept>
// Main SObjectizer header file.
#include <so_5/all.hpp>
// A class of an agent which will throw an exception.
class a_hello_t : public so_5::agent_t
{
public:
a_hello_t( context_t ctx ) : so_5::agent_t( ctx )
{}
virtual void so_evt_start() override
{
throw std::runtime_error( "sample exception" );
}
so_exception_reaction() const override
{
}
};
int main()
{
try
{
env.register_agent_as_coop( "coop", env.make_agent< a_hello_t >() );
} );
}
catch( const std::exception & ex )
{
std::cerr << "Error: " << ex.what() << std::endl;
return 1;
}
return 0;
}