Factory method to make it possible to create an exception from another one without having to resort to reflection, which is annoying to use. Sub-classes that want to provide this internal functionality should implement this method. @param msg Some arbitrary parameter to help build the new instance.
(final Object msg, final HBaseRpc rpc)
| 59 | * @param rpc The RPC that failed, if any. Can be {@code null}. |
| 60 | */ |
| 61 | abstract HBaseException make(final Object msg, final HBaseRpc rpc); |
| 62 | |
| 63 | private static final long serialVersionUID = 1280638842; |
| 64 |
no outgoing calls
no test coverage detected