-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ issue #99 ] Replace Jena raw with Solrdf client API (UPDATE ops are
still missing)
- Loading branch information
agazzarini
committed
Sep 29, 2015
1 parent
eb04ce4
commit e377432
Showing
8 changed files
with
292 additions
and
171 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
20 changes: 20 additions & 0 deletions
20
...df/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToDeleteException.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,20 @@ | ||
package org.gazzax.labs.solrdf.client; | ||
|
||
/** | ||
* Thrown in case a deletion cannot be executed (or it raises some exception). | ||
* | ||
* @author Andrea Gazzarini | ||
* @since 1.0 | ||
*/ | ||
public class UnableToDeleteException extends Exception { | ||
private static final long serialVersionUID = 1L; | ||
|
||
/** | ||
* Builds a new exception with the given cause. | ||
* | ||
* @param throwable the exception cause. | ||
*/ | ||
public UnableToDeleteException(final Throwable throwable) { | ||
super(throwable); | ||
} | ||
} |
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
Oops, something went wrong.