File Coverage

blib/lib/VMware/vCloudDirector/Error.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package VMware::vCloudDirector::Error;
2              
3             # ABSTRACT: Throw errors with the best of them
4              
5 3     3   18 use strict;
  3         6  
  3         76  
6 3     3   14 use warnings;
  3         7  
  3         125  
7              
8             our $VERSION = '0.005'; # VERSION
9             our $AUTHORITY = 'cpan:NIGELM'; # AUTHORITY
10              
11 3     3   16 use Moose;
  3         6  
  3         24  
12 3     3   21004 use Method::Signatures;
  3         10  
  3         43  
13              
14             extends 'Throwable::Error';
15              
16             # ------------------------------------------------------------------------
17              
18             has uri =>
19             ( is => 'ro', isa => 'URI', documentation => 'An optional URI that was being processed' );
20              
21             has response => ( is => 'ro', isa => 'Object', documentation => 'The response object' );
22             has request => ( is => 'ro', isa => 'Object', documentation => 'The request object' );
23              
24             # ------------------------------------------------------------------------
25              
26             __PACKAGE__->meta->make_immutable;
27              
28             1;
29              
30             __END__
31              
32             =pod
33              
34             =encoding UTF-8
35              
36             =head1 NAME
37              
38             VMware::vCloudDirector::Error - Throw errors with the best of them
39              
40             =head1 VERSION
41              
42             version 0.005
43              
44             =head1 AUTHOR
45              
46             Nigel Metheringham <nigelm@cpan.org>
47              
48             =head1 COPYRIGHT AND LICENSE
49              
50             This software is copyright (c) 2017 by Nigel Metheringham.
51              
52             This is free software; you can redistribute it and/or modify it under
53             the same terms as the Perl 5 programming language system itself.
54              
55             =cut