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