File Coverage

blib/lib/Eidolon/Driver/Exceptions.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             package Eidolon::Driver::Exceptions;
2             # ==============================================================================
3             #
4             # Eidolon
5             # Copyright (c) 2009, Atma 7
6             # ---
7             # Eidolon/Driver/Exceptions.pm - driver exceptions
8             #
9             # ==============================================================================
10              
11 7     7   178732 use warnings;
  7         19  
  7         202  
12 7     7   37 use strict;
  7         14  
  7         379  
13              
14             our $VERSION = "0.02"; # 2009-05-14 05:20:08
15              
16             use Eidolon::Core::Exception::Builder
17             (
18 7         54 "DriverError" =>
19             {
20             "title" => "Driver error"
21             },
22              
23 7     7   4245 );
  7         17  
24              
25             1;
26              
27             __END__