You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2019/12/19 18:11:20 UTC

[groovy] 01/02: add serialVersionUID

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

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit 966472452d86cd7b29293e5481a1a6488a046b39
Author: Paul King <pa...@asert.com.au>
AuthorDate: Fri Dec 20 03:56:31 2019 +1000

    add serialVersionUID
---
 src/main/groovy/groovy/cli/CliBuilderException.groovy | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/main/groovy/groovy/cli/CliBuilderException.groovy b/src/main/groovy/groovy/cli/CliBuilderException.groovy
index 84a9438..7bd8648 100644
--- a/src/main/groovy/groovy/cli/CliBuilderException.groovy
+++ b/src/main/groovy/groovy/cli/CliBuilderException.groovy
@@ -21,4 +21,6 @@ package groovy.cli
 import groovy.transform.InheritConstructors
 
 @InheritConstructors
-class CliBuilderException extends RuntimeException { }
+class CliBuilderException extends RuntimeException {
+    private static final long serialVersionUID = 3996705753888714632L;
+}