[ https://issues.apache.org/jira/browse/PARQUET-2063?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17374655#comment-17374655 ]
ASF GitHub Bot commented on PARQUET-2063: ----------------------------------------- gszadovszky commented on a change in pull request #917: URL: https://github.com/apache/parquet-mr/pull/917#discussion_r663729779 ########## File path: parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetMemoryManagerRuntimeException.java ########## @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.parquet.hadoop; + +import org.apache.parquet.ParquetRuntimeException; + +/** + * Signals that an exception of some sort has occurred with the Parquet Memory + * Manager. + * + * @see MemoryManager + */ +public class ParquetMemoryManagerRuntimeException + extends ParquetRuntimeException { + + private static final long serialVersionUID = 1L; + + public ParquetMemoryManagerRuntimeException(String format) { Review comment: The argument naming is a bit misleading. `message` or similar would be a better choice. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@parquet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org > Remove Compile Warnings from MemoryManager > ------------------------------------------ > > Key: PARQUET-2063 > URL: https://issues.apache.org/jira/browse/PARQUET-2063 > Project: Parquet > Issue Type: Improvement > Components: parquet-mr > Reporter: David Mollitor > Assignee: David Mollitor > Priority: Minor > -- This message was sent by Atlassian Jira (v8.3.4#803005)