aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
Diffstat (limited to 'libexec')
-rw-r--r--libexec/check_ftp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/check_ftp b/libexec/check_ftp
index 3ff4654..ca44420 100644
--- a/libexec/check_ftp
+++ b/libexec/check_ftp
@@ -34,7 +34,7 @@ use 5.010_001;
# Import required modules
use English qw(-no_match_vars);
-use Exception::Class ( PluginException => { alias => 'throw' } );
+use Exception::Class qw(TLSException);
use Monitoring::Plugin;
use Net::FTP;
use Try::Tiny;
@@ -98,7 +98,7 @@ try {
# If we connected and the server reports that it supports TLS, try it
if ( defined $mp->opts->starttls ) {
my $ssl = $ftp->can_ssl
- or throw 'Client can\'t TLS';
+ or TLSException->throw('Client can\'t TLS');
$ftp->feature('AUTH TLS')
or $mp->add_message( WARNING => 'AUTH TLS not listed in features' );
$ftp->starttls