sdk1/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/encryption/providers/store/MetaStore.java [422:428]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static <V> V checkNotNull(final V ref, final String errMsg) {
    if (ref == null) {
      throw new NullPointerException(errMsg);
    } else {
      return ref;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sdk1/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/internal/Utils.java [46:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static <V> V checkNotNull(final V ref, final String errMsg) {
    if (ref == null) {
      throw new NullPointerException(errMsg);
    } else {
      return ref;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



