Building/Form: pipe- and lineworker is updated when network is changed
This commit is contained in:
10
Layout/default/mfExceptionhandler/error_404.php
Normal file
10
Layout/default/mfExceptionhandler/error_404.php
Normal 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>
|
||||
10
Layout/default/mfExceptionhandler/error_500.php
Normal file
10
Layout/default/mfExceptionhandler/error_500.php
Normal 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>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
$code=$Exception->Code;
|
||||
if($code) {
|
||||
echo "Error $code: ";
|
||||
}
|
||||
echo $Exception->Message;
|
||||
echo "\n";
|
||||
@@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Error</title>
|
||||
</head>
|
||||
<body>
|
||||
<h3><?=$Exception?></h3>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user