All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.chronos.chronodb.api.exceptions.CacheGetResultNotPresentException Maven / Gradle / Ivy

The newest version!
package org.chronos.chronodb.api.exceptions;

public class CacheGetResultNotPresentException extends ChronoDBException {

	public CacheGetResultNotPresentException() {
		super();
	}

	protected CacheGetResultNotPresentException(final String message, final Throwable cause,
			final boolean enableSuppression, final boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

	public CacheGetResultNotPresentException(final String message, final Throwable cause) {
		super(message, cause);
	}

	public CacheGetResultNotPresentException(final String message) {
		super(message);
	}

	public CacheGetResultNotPresentException(final Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy