Skip to content

Commit 6b1ce30

Browse files
committed
Made exception classes and constructors public
1 parent fbdc527 commit 6b1ce30

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryNotActiveException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
public class JobRecoveryNotActiveException extends JobRecoveryException {
2727

28-
JobRecoveryNotActiveException(final UUID jobId, final Throwable cause) {
28+
public JobRecoveryNotActiveException(final UUID jobId, final Throwable cause) {
2929
super(buildMessage(jobId), cause);
3030
}
3131

ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryTypeException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
* {@link Ds3ClientHelpers#recoverReadJob(UUID)} requires the specified job to be of type {@link JobRequestType#GET}.
2626
* {@link Ds3ClientHelpers#recoverWriteJob(UUID)} requires the specified job to be of type {@link JobRequestType#PUT}.
2727
*/
28-
class JobRecoveryTypeException extends JobRecoveryException {
28+
public class JobRecoveryTypeException extends JobRecoveryException {
2929

30-
JobRecoveryTypeException(final String expectedType, final String actualType) {
30+
public JobRecoveryTypeException(final String expectedType, final String actualType) {
3131
super(buildMessage(expectedType, actualType));
3232
}
3333

0 commit comments

Comments
 (0)