Clover Coverage Report - Atlassian Trusted Apps(Aggregated)
Coverage timestamp: Tue Jun 9 2009 19:34:44 CDT
7   25   3   2.33
0   20   0.43   3
3     1  
1    
 
 
  TransportException       Line # 3 7 3 100% 1.0
 
  (20)
 
1    package com.atlassian.security.auth.trustedapps;
2   
 
3    public abstract class TransportException extends Exception
4    {
5    private final TransportErrorMessage error;
6   
 
7  18 toggle TransportException(TransportErrorMessage error)
8    {
9  18 super(error.toString());
10  18 Null.not("error", error);
11  18 this.error = error;
12    }
13   
 
14  9 toggle TransportException(TransportErrorMessage error, Exception exception)
15    {
16  9 super(error.toString(), exception);
17  9 Null.not("exception", exception);
18  9 this.error = error;
19    }
20   
 
21  17 toggle public final TransportErrorMessage getTransportErrorMessage()
22    {
23  17 return error;
24    }
25    }