-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from rwth-acis/release/1.2.2
Release/1.2.2
- Loading branch information
Showing
10 changed files
with
155 additions
and
15,268 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
23 changes: 23 additions & 0 deletions
23
core/src/main/java/i5/las2peer/api/security/AgentNotFoundInRegistryException.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,23 @@ | ||
package i5.las2peer.api.security; | ||
|
||
/** | ||
* Thrown if an agent cannot be found. | ||
* | ||
*/ | ||
public class AgentNotFoundInRegistryException extends AgentException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public AgentNotFoundInRegistryException(String message) { | ||
super(message); | ||
} | ||
|
||
public AgentNotFoundInRegistryException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public AgentNotFoundInRegistryException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
las2peer.revision=1.2 | ||
las2peer.build.number=1 | ||
las2peer.build.number=2 | ||
java.version=17 | ||
junit.version=4.13.1 | ||
jersey.version=2.35 | ||
dbis.archiva.url=https://archiva.dbis.rwth-aachen.de:9911/repository/internal | ||
dbis.archiva.url.snapshots=https://archiva.dbis.rwth-aachen.de:9911/repository/snapshots | ||
dbis.archiva.url.snapshots=https://archiva.dbis.rwth-aachen.de:9911/repository/snapshots |
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
/junit*.properties | ||
/frontend/node_modules/ | ||
/build | ||
/resources |
Oops, something went wrong.