File: Mask.pm

package info (click to toggle)
libpoet-perl 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 652 kB
  • sloc: perl: 2,292; makefile: 10; sql: 6; sh: 4
file content (12 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
package Poet::Module::Mask;
$Poet::Module::Mask::VERSION = '0.16';
use strict;
use warnings;
use base qw(Module::Mask);

sub message {
    my ( $self, $filename ) = @_;
    return "Can't locate $filename in \@INC";
}

1;