| EMMA Coverage Report (generated Tue Oct 27 11:32:50 PDT 2009) |
|---|
| [all classes][net.spy.memcached] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| OperationTimeoutException.java | 100% (1/1) | 100% (2/2) | 100% (9/9) | 100% (4/4) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class OperationTimeoutException | 100% (1/1) | 100% (2/2) | 100% (9/9) | 100% (4/4) |
| OperationTimeoutException (String): void | 100% (1/1) | 100% (4/4) | 100% (2/2) | |
| OperationTimeoutException (String, Throwable): void | 100% (1/1) | 100% (5/5) | 100% (2/2) |
| 1 | package net.spy.memcached; |
| 2 | |
| 3 | /** |
| 4 | * Thrown by {@link MemcachedClient} when any internal operations timeout. |
| 5 | * |
| 6 | * @author Ray Krueger |
| 7 | * @see net.spy.memcached.ConnectionFactory#getOperationTimeout() |
| 8 | */ |
| 9 | public class OperationTimeoutException extends RuntimeException { |
| 10 | |
| 11 | public OperationTimeoutException(String message) { |
| 12 | super(message); |
| 13 | } |
| 14 | |
| 15 | public OperationTimeoutException(String message, Throwable cause) { |
| 16 | super(message, cause); |
| 17 | } |
| 18 | |
| 19 | } |
| [all classes][net.spy.memcached] |
| EMMA 2.0.5312 (C) Vladimir Roubtsov |