Skip to content

Commit 7a4268b

Browse files
committed
fix: resolves spotbugs issue (serializability of exception)
1 parent 41138c9 commit 7a4268b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/main/java/com/diffplug/spotless/npm/NpmProcessException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
public class NpmProcessException extends RuntimeException {
2323
private static final long serialVersionUID = 6424331316676759525L;
24-
private final ProcessRunner.Result result;
24+
private final transient ProcessRunner.Result result;
2525

2626
public NpmProcessException(String message, ProcessRunner.Result result) {
2727
super(message);

0 commit comments

Comments
 (0)