Clover Coverage Report - Atlassian Trusted Apps(Aggregated)
Coverage timestamp: Tue Jun 9 2009 19:34:44 CDT
1   14   1   1
0   8   1   1
1     1  
1    
 
 
  InvalidIPAddressException       Line # 8 1 1 100% 1.0
 
  (6)
 
1    package com.atlassian.security.auth.trustedapps;
2   
3    import com.atlassian.security.auth.trustedapps.TransportErrorMessage.Code;
4   
5    /**
6    * Thrown when the IP address of the client does not match the allowed IP addresses
7    */
 
8    public abstract class InvalidIPAddressException extends InvalidRequestException
9    {
 
10  6 toggle public InvalidIPAddressException(Code code, String address)
11    {
12  6 super(new TransportErrorMessage(code, "Request not allowed from IP address: {0}", address));
13    }
14    }