Skip to content

Commit

Permalink
restore missing serialization ids
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainJuge committed Sep 25, 2024
1 parent 1f0fc84 commit 140ac17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
package io.opentelemetry.contrib.jmxscraper;

public class ArgumentsParsingException extends Exception {
private static final long serialVersionUID = 0L;

public ArgumentsParsingException(String msg) {
super(msg);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
package io.opentelemetry.contrib.jmxscraper.config;

public class ConfigurationException extends Exception {
private static final long serialVersionUID = 0L;

public ConfigurationException(String message, Throwable cause) {
super(message, cause);
Expand Down

0 comments on commit 140ac17

Please sign in to comment.