diff --git a/system/exception.php b/system/exception.php
index a0f352e9..600299d0 100644
--- a/system/exception.php
+++ b/system/exception.php
@@ -8,7 +8,7 @@ require LIBS . 'SensitiveException.php';
function exception_handler($exception) {
$message = $exception->getMessage();
if($exception instanceof SensitiveException) {
- $message = 'This error is sensitive and will be logged into system/logs/error.log.
View this file for further informations.';
+ $message = 'This error is sensitive and has been logged into system/logs/error.log.
View this file for more information.';
// log error to file
$f = fopen(LOGS . 'error.log', 'ab');