-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Yuriy Movchan <Yuriy.Movchan@gmail.com>
- Loading branch information
Showing
12 changed files
with
605 additions
and
462 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
jans-orm/core/src/main/java/io/jans/orm/exception/SearchEntryException.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,30 @@ | ||
/* | ||
* Janssen Project software is available under the Apache License (2004). See http://www.apache.org/licenses/ for full text. | ||
* | ||
* Copyright (c) 2020, Janssen Project | ||
*/ | ||
|
||
package io.jans.orm.exception; | ||
|
||
/** | ||
* An exception is a result if search operation fails | ||
* | ||
* @author Yuriy Movchan Date: 2022/11/04 | ||
*/ | ||
public class SearchEntryException extends BasePersistenceException { | ||
|
||
private static final long serialVersionUID = 1321766232087075304L; | ||
|
||
public SearchEntryException(Throwable root) { | ||
super(root); | ||
} | ||
|
||
public SearchEntryException(String string, Throwable root) { | ||
super(string, root); | ||
} | ||
|
||
public SearchEntryException(String s) { | ||
super(s); | ||
} | ||
|
||
} |
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.