private static void throwNotBigEnough()

in src/main/java/org/apache/datasketches/vector/matrix/MatrixPreambleUtil.java [222:226]


  private static void throwNotBigEnough(final long cap, final int required) {
    throw new IllegalArgumentException(
            "Possible Corruption: Size of byte array or Memory not large enough: Size: " + cap
                    + ", Required: " + required);
  }