-
Notifications
You must be signed in to change notification settings - Fork 872
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39edd7d
commit ba6c02a
Showing
2 changed files
with
98 additions
and
48 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
core/src/main/java/com/orientechnologies/orient/core/exception/OLoadCacheStateException.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,19 @@ | ||
package com.orientechnologies.orient.core.exception; | ||
|
||
import com.orientechnologies.common.exception.OSystemException; | ||
import com.orientechnologies.orient.core.storage.cache.OWriteCache; | ||
|
||
/** | ||
* This exception is thrown if it is impossible to read data from file which contains state of 2Q cache. | ||
* | ||
* @see com.orientechnologies.orient.core.storage.cache.local.twoq.O2QCache#loadCacheState(OWriteCache) | ||
*/ | ||
public class OLoadCacheStateException extends OSystemException { | ||
public OLoadCacheStateException(OSystemException exception) { | ||
super(exception); | ||
} | ||
|
||
public OLoadCacheStateException(String message) { | ||
super(message); | ||
} | ||
} |
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