| MailException | Line # 12 | 3 | 4 | 28.6% |
0.2857143
|
| (2) | |||
| Result | |||
|
0.2857143
|
test.atlassian.mail.server.TestSMTPMailServer.testSendFail
test.atlassian.mail.server.TestSMTPMailServer.testSendFail
|
1 PASS | |
|
0.2857143
|
test.atlassian.mail.server.managers.TestXMLMailServerManager.testDeleteMailServer
test.atlassian.mail.server.managers.TestXMLMailServerManager.testDeleteMailServer
|
1 PASS | |
| 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 |
public MailException() |
| 15 | { | |
| 16 | } | |
| 17 | ||
| 18 | 2 |
public MailException(String s) |
| 19 | { | |
| 20 | 2 | super(s); |
| 21 | } | |
| 22 | ||
| 23 | 0 |
public MailException(Throwable throwable) |
| 24 | { | |
| 25 | 0 | super(throwable); |
| 26 | } | |
| 27 | ||
| 28 | 0 |
public MailException(String s, Throwable throwable) |
| 29 | { | |
| 30 | 0 | super(s, throwable); |
| 31 | } | |
| 32 | } | |
|
||||||||||