It's a fatal server error. We cannot solve your problem until we know what the error message is, so the first step is to look through the log files and turn on debug output to see what the error message is.
To enable all debug output add the following code to the top of your page:
<?php
ini_set('error_reporting', E_ALL);
error_reporting(E_ALL);
ini_set('log_errors',TRUE);
ini_set('html_errors',TRUE);
ini_set('display_errors',true);
?>
It looks like you are trying to add a content article in the admin.
In components/com_content/controller.php on like 693 we see an error is raised because the data you tried to save was not valid. Either you have installed a extension that is messing up joomla, or by some other method the system is not stable.
I recommend removing extensions; if that doesn't help, reinstall Joomla to fix your problem.