This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
26 additions
and
15 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
11 changes: 11 additions & 0 deletions
11
api-sdk/src/main/java/com/smartling/api/sdk/exceptions/MaintenanceModeException.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.smartling.api.sdk.exceptions; | ||
|
||
import java.util.List; | ||
|
||
public class MaintenanceModeException extends NotAvailableException | ||
{ | ||
public MaintenanceModeException(final String contents, final List<String> messages) | ||
{ | ||
super(contents, messages); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
api-sdk/src/main/java/com/smartling/api/sdk/exceptions/NotAvailableException.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.smartling.api.sdk.exceptions; | ||
|
||
import java.util.List; | ||
|
||
public class NotAvailableException extends ApiException | ||
{ | ||
public NotAvailableException(final String contents, final List<String> messages) | ||
{ | ||
super(contents, messages); | ||
} | ||
} |
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
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
11 changes: 0 additions & 11 deletions
11
.../src/main/java/com/smartling/api/sdk/exceptions/ServiceTemporaryUnavailableException.java
This file was deleted.
Oops, something went wrong.