display a message if get form is empty

If anyone faces the same problem, its easy to display a message with have_posts()

<?php if ( have_posts() ) {
    echo "Events gefunden";
} else {
    echo "Keine Events gefunden";
}
?>