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

com.firefly.utils.io.EofException Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.utils.io;

import java.io.EOFException;

/**
 * A Firefly specialization of EOFException.
 * 

* This is thrown by Firefly to distinguish between EOF received from the * connection, vs and EOF thrown by some application talking to some other * file/socket etc. The only difference in handling is that Firefly EOFs are * logged less verbosely. */ public class EofException extends EOFException { private static final long serialVersionUID = -3003752099703697703L; public EofException() { } public EofException(String reason) { super(reason); } public EofException(Throwable th) { if (th != null) initCause(th); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy