Example usage for java.nio.file ClosedFileSystemException ClosedFileSystemException

List of usage examples for java.nio.file ClosedFileSystemException ClosedFileSystemException

Introduction

In this page you can find the example usage for java.nio.file ClosedFileSystemException ClosedFileSystemException.

Prototype

public ClosedFileSystemException() 

Source Link

Document

Constructs an instance of this class.

Usage

From source file:org.cryptomator.cryptofs.CryptoFileSystemImpl.java

void assertOpen() {
    if (!open) {
        throw new ClosedFileSystemException();
    }
}