-
Notifications
You must be signed in to change notification settings - Fork 537
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recover from _some_ missing files scenarios more gracefully, improve …
…testing #913
- Loading branch information
1 parent
b7bff36
commit d31fa0f
Showing
3 changed files
with
243 additions
and
113 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/main/java/net/openhft/chronicle/queue/impl/single/MissingStoreFileException.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,10 @@ | ||
package net.openhft.chronicle.queue.impl.single; | ||
|
||
/** | ||
* Thrown when a store file we expect to be present is missing (probably because it was deleted) | ||
*/ | ||
public class MissingStoreFileException extends IllegalStateException { | ||
public MissingStoreFileException(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
Oops, something went wrong.