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

com.github.marschall.memoryfilesystem.ClosedFileSystemChecker Maven / Gradle / Ivy

There is a newer version: 2.8.1
Show newest version
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