com.github.marschall.memoryfilesystem.ClosedFileSystemChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of memoryfilesystem Show documentation
Show all versions of memoryfilesystem Show documentation
An in memory implementation of a JSR-203 file system.
package com.github.marschall.memoryfilesystem;
import java.nio.file.ClosedFileSystemException;
final class ClosedFileSystemChecker extends ClosedChecker {
void check() {
if (!this.isOpen()) {
throw new ClosedFileSystemException();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy