blob: f2adb0878c7184a2152f5fa7a63089bfa3ad4e4a [file] [log] [blame]
/*
* Copyright (c) 2002-2016, the original author or authors.
*
* This software is distributable under the BSD license. See the terms of the
* BSD license in the documentation provided with this software.
*
* https://opensource.org/licenses/BSD-3-Clause
*/
package jdk.internal.org.jline.utils;
import java.io.IOException;
public class ClosedException extends IOException {
private static final long serialVersionUID = 3085420657077696L;
public ClosedException() {
}
public ClosedException(String message) {
super(message);
}
public ClosedException(String message, Throwable cause) {
super(message, cause);
}
public ClosedException(Throwable cause) {
super(cause);
}
}