| SystemException | Line # 7 | 1 | 1 | 100% |
1.0
|
| (2) | |||
| Result | |||
|
1.0
|
com.atlassian.security.auth.trustedapps.filter.TestTrustedAppAuthenticatorImpl.testBadCertificate
com.atlassian.security.auth.trustedapps.filter.TestTrustedAppAuthenticatorImpl.testBadCertificate
|
1 PASS | |
|
1.0
|
com.atlassian.security.auth.trustedapps.TestBouncyCastleEncryptionProvider.testDecodeNumberFormatException
com.atlassian.security.auth.trustedapps.TestBouncyCastleEncryptionProvider.testDecodeNumberFormatException
|
1 PASS | |
| 1 | package com.atlassian.security.auth.trustedapps; | |
| 2 | ||
| 3 | ||
| 4 | /** | |
| 5 | * Used when something serious is wrong. Should only occur if | |
| 6 | */ | |
| 7 | public class SystemException extends InvalidCertificateException | |
| 8 | { | |
| 9 | 2 |
public SystemException(String appId, Exception cause) |
| 10 | { | |
| 11 | 2 | super(new TransportErrorMessage.System(cause, appId), cause); |
| 12 | } | |
| 13 | } | |
|
||||||||||