apoc.util.collection.ResourceIteratorCloseFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.util.collection;
import org.neo4j.graphdb.Resource;
/**
* This exception is thrown when a checked exception occurs inside {@link Resource#close()}.
* It is a RuntimeException since {@link Resource#close()} is not allowed to throw checked exceptions.
*/
public class ResourceIteratorCloseFailedException extends RuntimeException {
public ResourceIteratorCloseFailedException(String message) {
super(message);
}
public ResourceIteratorCloseFailedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy