Skip to content

Commit

Permalink
Fixup Hub Client Exception Visibility
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Twrdik <[email protected]>
  • Loading branch information
DiCanio committed Dec 11, 2024
1 parent 03c194f commit 8742799
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Signals that analysis nodes could not be obtained from the hub core services.
*/
public class HubAnalysisNodesNotObtainable extends RuntimeException {
public final class HubAnalysisNodesNotObtainable extends RuntimeException {
public HubAnalysisNodesNotObtainable(String message) {
super(message);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Signals that a request to a central Hub service has failed due to a server error.
* An operation causing this error might be retryable.
*/
public class HubCoreServerException extends RuntimeException {
final class HubCoreServerException extends RuntimeException {
public HubCoreServerException(String message) {
super(message);
}
Expand Down

0 comments on commit 8742799

Please sign in to comment.