11 lines
153 B
Perl
11 lines
153 B
Perl
use strict;
|
|
package Net::ClamAV::Exception::Connect;
|
|
# ABSTRACT: Exception class for connect exceptions
|
|
|
|
use warnings;
|
|
|
|
use Moose;
|
|
with 'Throwable';
|
|
|
|
1;
|