diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-08-09 04:30:23 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-20 23:52:52 +0200 |
commit | bea9c36dd3209ae1126a48ed1ed5d6023579fcf5 (patch) | |
tree | 2b1993f00b05df2339019017fe9e26b3a1230fe9 /Bugzilla/Quantum/SES.pm | |
parent | 59fe9f7c0e56abd084c711455d5639d163312e52 (diff) | |
download | bugzilla-bea9c36dd3209ae1126a48ed1ed5d6023579fcf5.tar.gz bugzilla-bea9c36dd3209ae1126a48ed1ed5d6023579fcf5.tar.xz |
better FATAL error
Diffstat (limited to 'Bugzilla/Quantum/SES.pm')
-rw-r--r-- | Bugzilla/Quantum/SES.pm | 2 |
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 $_; }; } |