This is an automated email from the ASF dual-hosted git repository. jinmeiliao pushed a commit to branch feature/GEODE-7665 in repository https://gitbox.apache.org/repos/asf/geode.git
commit 44a1f26ede43f220b74cae306af508999803110b Author: Kirk Lund <[email protected]> AuthorDate: Thu Apr 15 17:10:24 2021 -0700 GEODE-9132: Cleanup PartitionedRegionPartialClearException * Generate serialVersionUID * Use full words for parameter names --- .../cache/PartitionedRegionPartialClearException.java | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/geode-core/src/main/java/org/apache/geode/cache/PartitionedRegionPartialClearException.java b/geode-core/src/main/java/org/apache/geode/cache/PartitionedRegionPartialClearException.java index 1ddb301..b84e775 100644 --- a/geode-core/src/main/java/org/apache/geode/cache/PartitionedRegionPartialClearException.java +++ b/geode-core/src/main/java/org/apache/geode/cache/PartitionedRegionPartialClearException.java @@ -21,14 +21,18 @@ package org.apache.geode.cache; */ public class PartitionedRegionPartialClearException extends CacheRuntimeException { - public PartitionedRegionPartialClearException() {} + private static final long serialVersionUID = -3420558263697703892L; - public PartitionedRegionPartialClearException(String msg) { - super(msg); + public PartitionedRegionPartialClearException() { + // nothing } - public PartitionedRegionPartialClearException(String msg, Throwable cause) { - super(msg, cause); + public PartitionedRegionPartialClearException(String message) { + super(message); + } + + public PartitionedRegionPartialClearException(String message, Throwable cause) { + super(message, cause); } public PartitionedRegionPartialClearException(Throwable cause) {
