package Local::Exception; use strict; use warnings FATAL => 'all'; use Exporter 'import'; our @EXPORT = qw(throw_local); use Exception::Class ( 'Local::Exception' => { description => 'My local exception', alias => 'throw_local' } ) ; 1;