Constructor. @param region The region we were looking up (if known, can be null if not known). @param msg A message describing as precisely as possible what's wrong with the META table.
(final RegionInfo region, final String msg)
| 41 | * with the META table. |
| 42 | */ |
| 43 | BrokenMetaException(final RegionInfo region, final String msg) { |
| 44 | super("Your .META. table seems broken for " |
| 45 | + (region == null ? "(unknown table)" : region) |
| 46 | + ". " + msg); |
| 47 | this.table = region.table(); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Constructor. |