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