10 lines
160 B
Perl
10 lines
160 B
Perl
|
use strict;
|
||
|
package Net::ClamAV::Exception::Unsupported;
|
||
|
# ABSTRACT: Exception class for unsupported exceptions
|
||
|
|
||
|
use warnings;
|
||
|
|
||
|
use Moose;
|
||
|
with 'Throwable';
|
||
|
1;
|