You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by nn...@apache.org on 2021/06/04 21:28:26 UTC

[geode] 08/18: GEODE-9132: Cleanup PartitionedRegionPartialClearException

This is an automated email from the ASF dual-hosted git repository.

nnag pushed a commit to branch feature/GEODE-7665
in repository https://gitbox.apache.org/repos/asf/geode.git

commit d322de73e6ed67a2d21429734b25acdc66a55c7d
Author: Kirk Lund <kl...@apache.org>
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) {