com.github.andyshao.nio.BufferReaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.nio;
import java.io.IOException;
import java.io.Serial;
/**
*
* Title:
* Descript: The Exception for {@link BufferReader}
* Copyright: Copryright(c) Jun 21, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class BufferReaderException extends IOException {
@Serial
private static final long serialVersionUID = 571371713174119857L;
/**
* No arg construction
*/
public BufferReaderException() {
}
/**
* with error message
* @param message error message
*/
public BufferReaderException(String message) {
super(message);
}
/**
* with error message and previous exception
* @param message error message
* @param exception previous exception
*/
public BufferReaderException(String message , Throwable exception) {
super(message , exception);
}
/**
* with previous exception
* @param exception previous exception
*/
public BufferReaderException(Throwable exception) {
super(exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy