(final Object msg, final HBaseRpc rpc)
| 54 | } |
| 55 | |
| 56 | @Override |
| 57 | VersionMismatchException make(final Object msg, final HBaseRpc rpc) { |
| 58 | if (msg == this || msg instanceof VersionMismatchException) { |
| 59 | final VersionMismatchException e = (VersionMismatchException) msg; |
| 60 | return new VersionMismatchException(e.getMessage(), rpc); |
| 61 | } |
| 62 | return new VersionMismatchException(msg.toString(), rpc); |
| 63 | } |
| 64 | |
| 65 | private static final long serialVersionUID = 1324486442; |
| 66 |
nothing calls this directly
no test coverage detected