Example usage for java.io IOException subclass-usage

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

Introduction

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

Usage

From source file TarInputStream.java

class InvalidHeaderException extends IOException {

    public InvalidHeaderException() {
        super();
    }

From source file tufts.vue.action.ActionUtil.java

class MapException extends IOException {
    public MapException(String s) {
        super(s);
    }
}