MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / BrokenMetaException

Method BrokenMetaException

src/BrokenMetaException.java:43–48  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

tableMethod · 0.65

Tested by

no test coverage detected