Skip to content

Commit

Permalink
fix: resolves spotbugs issue (serializability of exception)
Browse files Browse the repository at this point in the history
  • Loading branch information
simschla committed Jul 18, 2023
1 parent e2d8be9 commit 15fad43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class NpmProcessException extends RuntimeException {
private static final long serialVersionUID = 6424331316676759525L;
private final ProcessRunner.Result result;
private final transient ProcessRunner.Result result;

public NpmProcessException(String message, ProcessRunner.Result result) {
super(message);
Expand Down

0 comments on commit 15fad43

Please sign in to comment.