File Coverage

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