Is it possible to throw an error in blueprint?

+1 vote. For whatever reason, I would like to throw an exception/error which crashes the game under certain conditions – in blueprint. In C++ I might for example write something like

throw std::runtime_error( "received negative value" );

or in C#

throw new Exception( "received negative value" );