summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-08-09 04:30:23 +0200
committerDylan William Hardison <dylan@hardison.net>2018-08-20 23:52:52 +0200
commitbea9c36dd3209ae1126a48ed1ed5d6023579fcf5 (patch)
tree2b1993f00b05df2339019017fe9e26b3a1230fe9
parent59fe9f7c0e56abd084c711455d5639d163312e52 (diff)
downloadbugzilla-bea9c36dd3209ae1126a48ed1ed5d6023579fcf5.tar.gz
bugzilla-bea9c36dd3209ae1126a48ed1ed5d6023579fcf5.tar.xz
better FATAL error
-rw-r--r--Bugzilla/Quantum/SES.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Quantum/SES.pm b/Bugzilla/Quantum/SES.pm
index 119769b32..2a1c65802 100644
--- a/Bugzilla/Quantum/SES.pm
+++ b/Bugzilla/Quantum/SES.pm
@@ -30,7 +30,7 @@ sub main {
$self->_main;
}
catch {
- FATAL($_);
+ FATAL("Error in SES Handler: ", $_);
die $_;
};
}