Clover Coverage Report - Atlassian Mail
Coverage timestamp: Mon Sep 29 2008 21:26:36 CDT
3   32   4   0.75
0   20   1.33   4
4     1  
1    
 
 
  MailException       Line # 12 3 4 28.6% 0.2857143
 
  (2)
 
1    package com.atlassian.mail;
2   
3    import org.apache.commons.lang.exception.NestableException;
4   
5    /**
6    * Created by IntelliJ IDEA.
7    * User: Administrator
8    * Date: Dec 9, 2002
9    * Time: 2:24:33 PM
10    * To change this template use Options | File Templates.
11    */
 
12    public class MailException extends NestableException
13    {
 
14  0 toggle public MailException()
15    {
16    }
17   
 
18  2 toggle public MailException(String s)
19    {
20  2 super(s);
21    }
22   
 
23  0 toggle public MailException(Throwable throwable)
24    {
25  0 super(throwable);
26    }
27   
 
28  0 toggle public MailException(String s, Throwable throwable)
29    {
30  0 super(s, throwable);
31    }
32    }