From dd0433cf81fe5329b694a148191f09e427d4a56c Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Tue, 11 Apr 2017 05:37:03 +0200
Subject: Class "ExceptionHandler" has been removed and several files has been
 changed.

---
 system/post/list.php | 2 +-
 system/post/main.php | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

(limited to 'system/post')

diff --git a/system/post/list.php b/system/post/list.php
index 908f7b8..f2edd0b 100644
--- a/system/post/list.php
+++ b/system/post/list.php
@@ -60,6 +60,6 @@ try {
 # CATCH: Template\Exception
 #===============================================================================
 catch(Template\Exception $Exception) {
-	$Exception->defaultHandler();
+	Application::exit($Exception->getMessage());
 }
 ?>
\ No newline at end of file
diff --git a/system/post/main.php b/system/post/main.php
index 0b69023..46937f3 100644
--- a/system/post/main.php
+++ b/system/post/main.php
@@ -59,7 +59,7 @@ try {
 	# CATCH: Template\Exception
 	#===============================================================================
 	catch(Template\Exception $Exception) {
-		$Exception->defaultHandler();
+		Application::exit($Exception->getMessage());
 	}
 }
 
@@ -86,5 +86,5 @@ catch(Post\Exception $Exception) {
 # CATCH: User\Exception
 #===============================================================================
 catch(User\Exception $Exception) {
-	$Exception->defaultHandler();
+	Application::exit($Exception->getMessage());
 }
\ No newline at end of file
-- 
cgit v1.2.3