List of usage examples for java.io IOException subclass-usage
From source file com.joyent.triton.exceptions.CloudApiIOException.java
/**
* General IO exception type that all other IO exceptions within
* the SDK inherit from.
*
* @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
* @since 1.0.0
From source file fr.mixit.android.io.JsonHandlerException.java
/** * General {@link java.io.IOException} that indicates a problem occured while parsing or applying an {@link org.json.JSONArray}. */ public class JsonHandlerException extends IOException { private static final long serialVersionUID = -384549840810346698L;
From source file org.eredlab.g4.ccl.net.ftp.FTPConnectionClosedException.java
/***
* FTPConnectionClosedException is used to indicate the premature or
* unexpected closing of an FTP connection resulting from a
* {@link org.apache.commons.net.ftp.FTPReply#SERVICE_NOT_AVAILABLE FTPReply.SERVICE_NOT_AVAILABLE }
* response (FTP reply code 421) to a
* failed FTP command. This exception is derived from IOException and
From source file org.eredlab.g4.ccl.net.nntp.NNTPConnectionClosedException.java
/***
* NNTPConnectionClosedException is used to indicate the premature or
* unexpected closing of an NNTP connection resulting from a
* {@link org.apache.commons.net.nntp.NNTPReply#SERVICE_DISCONTINUED NNTPReply.SERVICE_DISCONTINUED }
* response (NNTP reply code 400) to a
* failed NNTP command. This exception is derived from IOException and
From source file org.eredlab.g4.ccl.net.smtp.SMTPConnectionClosedException.java
/***
* SMTPConnectionClosedException is used to indicate the premature or
* unexpected closing of an SMTP connection resulting from a
* {@link org.apache.commons.net.smtp.SMTPReply#SERVICE_NOT_AVAILABLE SMTPReply.SERVICE_NOT_AVAILABLE }
* response (SMTP reply code 421) to a
* failed SMTP command. This exception is derived from IOException and
From source file net.oneandone.sushi.fs.webdav.StatusException.java
public class StatusException extends IOException { private final StatusLine statusline; public StatusException(StatusLine statusline) { super(statusline.getStatusCode() + ":" + statusline.getReasonPhrase()); this.statusline = statusline;
From source file org.eredlab.g4.ccl.net.io.CopyStreamException.java
/**
* The CopyStreamException class is thrown by the org.apache.commons.io.Util
* copyStream() methods. It stores the number of bytes confirmed to
* have been transferred before an I/O error as well as the IOException
* responsible for the failure of a copy operation.
* @see Util
From source file com.dianping.resource.io.NestedIOException.java
/**
* Subclass of IOException that properly handles a root cause,
* exposing the root cause just like NestedChecked/RuntimeException does.
*
* <p>The similarity between this class and the NestedChecked/RuntimeException
* class is unavoidable, as this class needs to derive from IOException
From source file evyframework.common.NestedIOException.java
/**
* Subclass of {@link IOException} that properly handles a root cause,
* exposing the root cause just like NestedChecked/RuntimeException does.
*
* <p>Proper root cause handling has not been added to standard IOException before
* Java 6, which is why we need to do it ourselves for Java 5 compatibility purposes.
From source file org.echocat.jomon.net.http.HttpResponseException.java
public class HttpResponseException extends IOException { private final int _statusCode; private final String _statusMessage; private final String _body;