File Coverage

blib/lib/Mojo/SMTP/Client/Exception.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 14 85.7


line stmt bran cond sub pod time code
1             package Mojo::SMTP::Client::Exception;
2 3     3   17 use Mojo::Base 'Mojo::Exception';
  3         5  
  3         13  
3              
4             package Mojo::SMTP::Client::Exception::Stream;
5 3     3   379 use Mojo::Base 'Mojo::SMTP::Client::Exception';
  3         9  
  3         10  
6              
7             package Mojo::SMTP::Client::Exception::Response;
8 3     3   315 use Mojo::Base 'Mojo::SMTP::Client::Exception';
  3         6  
  3         7  
9             has 'code';
10 0     0     sub throw { die shift->new->code(shift)->trace(2)->_detect(@_) }
11              
12             1;
13              
14             __END__