Skip to content

Commit

Permalink
DMP-4613 Add ARM RPO check for getExtendedProductionsByMatter status
Browse files Browse the repository at this point in the history
Added missing new exception
  • Loading branch information
karen-hedges committed Jan 21, 2025
1 parent e0818d7 commit 228607d
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package uk.gov.hmcts.darts.arm.exception;

import uk.gov.hmcts.darts.common.exception.DartsException;

public class ArmRpoInProgressException extends DartsException {

public ArmRpoInProgressException(String rpoEndpoint, Integer executionId) {
super(String.format("RPO endpoint %s is already in progress for execution id %s", rpoEndpoint, executionId));
}

}

0 comments on commit 228607d

Please sign in to comment.