summaryrefslogtreecommitdiff
path: root/includes/helper/error_helper.php
blob: 58d0ac866bc342619f73a45d0a306194ac809719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

/**
 * Displays a fatal message and stops execution.
 *
 * @param string $message
 */
function engelsystem_error($message) {
  raw_output($message);
}

?>