Clover Coverage Report - Atlassian Trusted Apps(Aggregated)
Coverage timestamp: Tue Jun 9 2009 19:34:44 CDT
1   11   1   1
0   8   1   1
1     1  
1    
 
 
  CertificateTooOldException       Line # 5 1 1 100% 1.0
 
  (1)
 
1    package com.atlassian.security.auth.trustedapps;
2   
3    import com.atlassian.security.auth.trustedapps.TransportErrorMessage.Code;
4   
 
5    public class CertificateTooOldException extends InvalidCertificateException
6    {
 
7  1 toggle public CertificateTooOldException(ApplicationCertificate certificate, long certificateTimeout)
8    {
9  1 super(new TransportErrorMessage(Code.OLD_CERT, "Certificate too old. Application: {0} Certificate Created: {1} Timeout: {2}", certificate.getApplicationID(), String.valueOf(certificate.getCreationTime()), String.valueOf(certificateTimeout)));
10    }
11    }