Building/Form: pipe- and lineworker is updated when network is changed

This commit is contained in:
Frank Schubert
2021-07-20 19:49:39 +02:00
parent 8a8de499c6
commit 912fafade3
8 changed files with 132 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>mvcfronk Error 404 - Module not found</title>
</head>
<body>
<h1>Error 404</h1>
<h3>The Module was not found</h3>
<!-- <?=$Exception?> -->
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>500 - Internal application error</title>
</head>
<body>
<h1>Error 500</h1>
<h3>An internal Error occured.</h3>
<!-- <?=$Exception?> -->
</body>
</html>

View File

@@ -0,0 +1,7 @@
<?php
$code=$Exception->Code;
if($code) {
echo "Error $code: ";
}
echo $Exception->Message;
echo "\n";

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>Error</title>
</head>
<body>
<h3><?=$Exception?></h3>
</body>
</html>