| blib/lib/RDF/LDF/Error.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 3 | 3 | 100.0 | 
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 | 
| pod | n/a | ||
| total | 4 | 4 | 100.0 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package RDF::LDF::Error; | ||||||
| 2 | # The error handling via Error in RDF::Trine is in conflict with | ||||||
| 3 | # Moo packages. This Throwable package is a stop gap | ||||||
| 4 | 5 | 5 | 33 | use Moo; | |||
| 5 | 10 | ||||||
| 5 | 44 | ||||||
| 5 | with 'Throwable'; | ||||||
| 6 | |||||||
| 7 | has text => (is => 'ro'); | ||||||
| 8 | |||||||
| 9 | 1; |