%line | %branch | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
com.ozacc.mail.mock.AssertionFailedException |
|
|
1 | package com.ozacc.mail.mock; |
|
2 | ||
3 | /** |
|
4 | * MockSendMail¤Ç´?Âԥ᡼¥?¤ÈÁ÷¿®¥á¡¼¥?¤¬°?Ãפ·¤Ê¤«¤Ã¤¿»?¤Ë¥¹¥ú½¼¤µ¤?¤?Èó¥Á¥§¥Ã¥¯Îã³°¡£ |
|
5 | * |
|
6 | * @since 1.0 |
|
7 | * @author Tomohiro Otsuka |
|
8 | * @version $Id: AssertionFailedException.java,v 1.2 2004/09/13 07:07:42 otsuka Exp $ |
|
9 | */ |
|
10 | public class AssertionFailedException extends RuntimeException { |
|
11 | ||
12 | public AssertionFailedException() { |
|
13 | 0 | super(); |
14 | 0 | } |
15 | ||
16 | public AssertionFailedException(String message) { |
|
17 | 7 | super(message); |
18 | 7 | } |
19 | ||
20 | public AssertionFailedException(Throwable cause) { |
|
21 | 0 | super(cause); |
22 | 0 | } |
23 | ||
24 | public AssertionFailedException(String message, Throwable cause) { |
|
25 | 0 | super(message, cause); |
26 | 0 | } |
27 | ||
28 | } |
This report is generated by jcoverage, Maven and Maven JCoverage Plugin. |