All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tailf.jnc.SessionClosedException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.tailf.jnc;

import java.io.IOException;

/**
 * @author lig
 * @date 17/9/4
 */
public class SessionClosedException extends IOException{

    /**
     * Constructs an {@code IOException} with {@code null}
     * as its error detail message.
     */
    public SessionClosedException() {
    }

    /**
     * Constructs an {@code IOException} with the specified detail message.
     *
     * @param message The detail message (which is saved for later retrieval
     *                by the {@link #getMessage()} method)
     */
    public SessionClosedException(String message) {
        super(message);
    }

    /**
     * Constructs an {@code IOException} with the specified detail message
     * and cause.
     * 

*

Note that the detail message associated with {@code cause} is * not automatically incorporated into this exception's detail * message. * * @param message The detail message (which is saved for later retrieval * by the {@link #getMessage()} method) * @param cause The cause (which is saved for later retrieval by the * {@link #getCause()} method). (A null value is permitted, * and indicates that the cause is nonexistent or unknown.) * @since 1.6 */ public SessionClosedException(String message, Throwable cause) { super(message, cause); } /** * Constructs an {@code IOException} with the specified cause and a * detail message of {@code (cause==null ? null : cause.toString())} * (which typically contains the class and detail message of {@code cause}). * This constructor is useful for IO exceptions that are little more * than wrappers for other throwables. * * @param cause The cause (which is saved for later retrieval by the * {@link #getCause()} method). (A null value is permitted, * and indicates that the cause is nonexistent or unknown.) * @since 1.6 */ public SessionClosedException(Throwable cause) { super(cause); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy