This module implements a minimal lightweight exception object. It is meant
to be a compromise between more basic solutions like Carp which can only print information and cannot handle exception objects, and more complex solutions like Exception::Class which can be used to define complex inline exceptions and has a number of module dependencies. WWW: http://search.cpan.org/dist/Class-Throwable/ Author: Stevan Little <stevan@iinteractive.com>
This commit is contained in:
parent
4ba9b67007
commit
c1118f4cc3
4 changed files with 34 additions and 0 deletions
8
p5-Class-Throwable/DESCR
Normal file
8
p5-Class-Throwable/DESCR
Normal file
|
@ -0,0 +1,8 @@
|
|||
This module implements a minimal lightweight exception object. It is meant
|
||||
to be a compromise between more basic solutions like Carp which can only
|
||||
print information and cannot handle exception objects, and more complex
|
||||
solutions like Exception::Class which can be used to define complex inline
|
||||
exceptions and has a number of module dependencies.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Class-Throwable/
|
||||
Author: Stevan Little <stevan@iinteractive.com>
|
20
p5-Class-Throwable/Makefile
Normal file
20
p5-Class-Throwable/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/03/09 20:13:05 kuli0020 Exp $
|
||||
|
||||
DISTNAME= Class-Throwable-0.10
|
||||
PKGNAME= p5-${DISTNAME}
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Class/}
|
||||
|
||||
MAINTAINER= kuli0020@umn.edu
|
||||
HOMEPAGE= http://search.cpan.org/dist/Class-Throwable/
|
||||
COMMENT= Minimal lightweight exception class
|
||||
|
||||
DEPENDS+= p5-Scalar-List-Utils>=1.1:../../devel/p5-Scalar-List-Utils
|
||||
DEPENDS+= {perl>=5.7.3,p5-Test-Simple>=0.47}:../../devel/p5-Test-Simple
|
||||
|
||||
PERL5_REQD+= 5.6.0
|
||||
|
||||
PERL5_PACKLIST= auto/Class/Throwable/.packlist
|
||||
|
||||
.include "../../lang/perl5/module.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
1
p5-Class-Throwable/PLIST
Normal file
1
p5-Class-Throwable/PLIST
Normal file
|
@ -0,0 +1 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/03/09 20:13:05 kuli0020 Exp $
|
5
p5-Class-Throwable/distinfo
Normal file
5
p5-Class-Throwable/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/03/09 20:13:05 kuli0020 Exp $
|
||||
|
||||
SHA1 (Class-Throwable-0.10.tar.gz) = 799f58ea7edcf7bdc34ae75e2f9a4a8190478f43
|
||||
RMD160 (Class-Throwable-0.10.tar.gz) = 28d1fb3f5cbf64d6908513807dcadc6517ae53f8
|
||||
Size (Class-Throwable-0.10.tar.gz) = 10971 bytes
|
Loading…
Reference in a new issue