Example usage for java.io InterruptedIOException subclass-usage

List of usage examples for java.io InterruptedIOException subclass-usage

Introduction

In this page you can find the example usage for java.io InterruptedIOException subclass-usage.

Usage

From source file org.jenkinsci.plugins.mber.LoggingOutputStream.java

class LoggingInterruptedException extends InterruptedIOException {
    public LoggingInterruptedException(final String message) {
        super(message);
    }
}