| EMMA Coverage Report (generated Tue May 16 15:34:38 CDT 2006) |
|---|
| [all classes][com.mysql.management.util] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| NotImplementedException.java | 100% (1/1) | 100% (7/7) | 100% (98/98) | 100% (14/14) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class NotImplementedException | 100% (1/1) | 100% (7/7) | 100% (98/98) | 100% (14/14) |
| NotImplementedException (): void | 100% (1/1) | 100% (3/3) | 100% (2/2) | |
| NotImplementedException (Object []): void | 100% (1/1) | 100% (8/8) | 100% (2/2) | |
| NotImplementedException (Object): void | 100% (1/1) | 100% (11/11) | 100% (2/2) | |
| NotImplementedException (Object, Object): void | 100% (1/1) | 100% (13/13) | 100% (2/2) | |
| NotImplementedException (Object, Object, Object): void | 100% (1/1) | 100% (17/17) | 100% (2/2) | |
| NotImplementedException (Object, Object, Object, Object): void | 100% (1/1) | 100% (21/21) | 100% (2/2) | |
| NotImplementedException (Object, Object, Object, Object, Object): void | 100% (1/1) | 100% (25/25) | 100% (2/2) |
| 1 | package com.mysql.management.util; |
| 2 | |
| 3 | public final class NotImplementedException extends RuntimeException { |
| 4 | private static final long serialVersionUID = 1L; |
| 5 | |
| 6 | public NotImplementedException() { |
| 7 | super(); |
| 8 | } |
| 9 | |
| 10 | public NotImplementedException(Object arg0) { |
| 11 | super("args: " + arg0); |
| 12 | } |
| 13 | |
| 14 | public NotImplementedException(Object[] arg0) { |
| 15 | this(new ListToString().toString(arg0)); |
| 16 | } |
| 17 | |
| 18 | public NotImplementedException(Object arg0, Object arg1) { |
| 19 | this(new Object[] { arg0, arg1 }); |
| 20 | } |
| 21 | |
| 22 | public NotImplementedException(Object arg0, Object arg1, Object arg2) { |
| 23 | this(new Object[] { arg0, arg1, arg2 }); |
| 24 | } |
| 25 | |
| 26 | public NotImplementedException(Object arg0, Object arg1, Object arg2, |
| 27 | Object arg3) { |
| 28 | this(new Object[] { arg0, arg1, arg2, arg3 }); |
| 29 | } |
| 30 | |
| 31 | public NotImplementedException(Object arg0, Object arg1, Object arg2, |
| 32 | Object arg3, Object arg4) { |
| 33 | this(new Object[] { arg0, arg1, arg2, arg3, arg4 }); |
| 34 | } |
| 35 | } |
| [all classes][com.mysql.management.util] |
| EMMA 2.0.5312 (C) Vladimir Roubtsov |