| blib/lib/OpenFrame/WebApp/Error/LoadClass.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 9 | 9 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 |
| pod | n/a | ||
| total | 12 | 12 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | =head1 NAME | ||||||
| 2 | |||||||
| 3 | OpenFrame::WebApp::Error::LoadClass - thrown when a class could not be loaded. | ||||||
| 4 | |||||||
| 5 | =head1 SYNOPSIS | ||||||
| 6 | |||||||
| 7 | # see Error.pm | ||||||
| 8 | |||||||
| 9 | =cut | ||||||
| 10 | |||||||
| 11 | package OpenFrame::WebApp::Error::LoadClass; | ||||||
| 12 | |||||||
| 13 | 1 | 1 | 17 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 40 | ||||||
| 14 | 1 | 1 | 6 | use warnings::register; | |||
| 1 | 3 | ||||||
| 1 | 131 | ||||||
| 15 | |||||||
| 16 | 1 | 1 | 6 | use base qw( Error ); | |||
| 1 | 2 | ||||||
| 1 | 152 | ||||||
| 17 | |||||||
| 18 | our $VERSION = (split(/ /, ' $Revision: 1.1 $ '))[2]; | ||||||
| 19 | |||||||
| 20 | 1; | ||||||
| 21 | |||||||
| 22 | __END__ |