File Coverage

blib/lib/WebService/SmartyStreets/Exception/AddressNotFound.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 WebService::SmartyStreets::Exception::AddressNotFound;
2             $WebService::SmartyStreets::Exception::AddressNotFound::VERSION = '0.0102';
3 2     2   1334 use Moo;
  2         3  
  2         13  
4             extends 'Throwable::Error';
5              
6             has '+message' => ( default => 'Address Not Found.' );
7              
8             1;
9              
10             __END__