com.github.pojomvcc.ObjectCacheException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pojo-mvcc Show documentation
Show all versions of pojo-mvcc Show documentation
A simple in-memory POJO Multi Version Concurrency Control (MVCC) cache.
The newest version!
package com.github.pojomvcc;
/**
* {@code Exception} that is thrown when an error occurs.
*
* @author Aidan Morgan
*/
public class ObjectCacheException extends RuntimeException {
/**
* @inheritDoc
*/
public ObjectCacheException() {
super();
}
/**
* @inheritDoc
*/
public ObjectCacheException(String message) {
super(message);
}
/**
* @inheritDoc
*/
public ObjectCacheException(String message, Throwable cause) {
super(message, cause);
}
public ObjectCacheException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy