summaryrefslogtreecommitdiff
path: root/includes/helper/error_helper.php
blob: b4b4f2489abe944f267083020d9fd06170b88f3d (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) {
  die($message);
}

?>