| line | stmt | bran | cond | sub | pod | time | code | 
| 1 | 2 |  |  | 2 |  | 623 | use strict; | 
|  | 2 |  |  |  |  | 2 |  | 
|  | 2 |  |  |  |  | 42 |  | 
| 2 | 2 |  |  | 2 |  | 5 | use warnings; | 
|  | 2 |  |  |  |  | 2 |  | 
|  | 2 |  |  |  |  | 198 |  | 
| 3 |  |  |  |  |  |  | package Exception::Reporter::Dumper; | 
| 4 |  |  |  |  |  |  | # ABSTRACT: something that dumps values into records | 
| 5 |  |  |  |  |  |  | $Exception::Reporter::Dumper::VERSION = '0.014'; | 
| 6 |  |  |  |  |  |  | sub new { | 
| 7 | 3 |  |  | 3 | 0 | 12746 | my $class = shift; | 
| 8 |  |  |  |  |  |  |  | 
| 9 | 3 | 50 |  |  |  | 9 | Carp::confess("$class constructor does not take any parameters") if @_; | 
| 10 |  |  |  |  |  |  |  | 
| 11 | 3 |  |  |  |  | 18 | return bless {}, $class; | 
| 12 |  |  |  |  |  |  | } | 
| 13 |  |  |  |  |  |  |  | 
| 14 |  |  |  |  |  |  | sub dump { | 
| 15 | 0 |  | 0 | 0 | 0 |  | my $class = ref $_[0] || $_[0]; | 
| 16 | 0 |  |  |  |  |  | Carp::confess("$class does not implement required Exception::Reporter::Dumper method 'dump'"); | 
| 17 |  |  |  |  |  |  | } | 
| 18 |  |  |  |  |  |  |  | 
| 19 |  |  |  |  |  |  | 1; | 
| 20 |  |  |  |  |  |  |  | 
| 21 |  |  |  |  |  |  | __END__ |