-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to jakarta EE and some cleanup
- Loading branch information
Willem Elbers
committed
Oct 31, 2024
1 parent
691352b
commit 6838acd
Showing
7 changed files
with
48 additions
and
63 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
15 changes: 15 additions & 0 deletions
15
src/main/java/de/uni_leipzig/asv/clarin/webservices/pidservices2/PidApiException.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,15 @@ | ||
package de.uni_leipzig.asv.clarin.webservices.pidservices2; | ||
|
||
/** | ||
* | ||
* @author wilelb | ||
*/ | ||
public class PidApiException extends Exception { | ||
public PidApiException(String message) { | ||
super(message); | ||
} | ||
|
||
public PidApiException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
src/main/java/de/uni_leipzig/asv/clarin/webservices/pidservices2/impl/AbstractPidClient.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
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
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