-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: change argumention for apiexception
- Loading branch information
1 parent
7833f99
commit 7305c67
Showing
8 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/io/managed/services/test/client/exception/ApiConflictException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.managed.services.test.client.exception; | ||
|
||
public class ApiConflictException extends ApiGenericException { | ||
public ApiConflictException(ApiUnknownException e) { | ||
public ApiConflictException(ApiGenericException e) { | ||
super(e); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/main/java/io/managed/services/test/client/exception/ApiForbiddenException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.managed.services.test.client.exception; | ||
|
||
public class ApiForbiddenException extends ApiGenericException { | ||
public ApiForbiddenException(ApiUnknownException e) { | ||
public ApiForbiddenException(ApiGenericException e) { | ||
super(e); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/io/managed/services/test/client/exception/ApiLockedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.managed.services.test.client.exception; | ||
|
||
public class ApiLockedException extends ApiGenericException { | ||
public ApiLockedException(ApiUnknownException e) { | ||
public ApiLockedException(ApiGenericException e) { | ||
super(e); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/main/java/io/managed/services/test/client/exception/ApiNotFoundException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.managed.services.test.client.exception; | ||
|
||
public class ApiNotFoundException extends ApiGenericException { | ||
public ApiNotFoundException(ApiUnknownException e) { | ||
public ApiNotFoundException(ApiGenericException e) { | ||
super(e); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/main/java/io/managed/services/test/client/exception/ApiToManyRequestsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.managed.services.test.client.exception; | ||
|
||
public class ApiToManyRequestsException extends ApiGenericException { | ||
public ApiToManyRequestsException(ApiUnknownException e) { | ||
public ApiToManyRequestsException(ApiGenericException e) { | ||
super(e); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/main/java/io/managed/services/test/client/exception/ApiUnauthorizedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.managed.services.test.client.exception; | ||
|
||
public class ApiUnauthorizedException extends ApiGenericException { | ||
public ApiUnauthorizedException(ApiUnknownException e) { | ||
public ApiUnauthorizedException(ApiGenericException e) { | ||
super(e); | ||
} | ||
} |