List of usage examples for java.io IOException subclass-usage
From source file org.ambraproject.wombat.service.remote.ServiceConnectionException.java
public class ServiceConnectionException extends IOException { ServiceConnectionException(HttpHostConnectException e) { super("Could not connect to: " + e.getHost(), e); } }
From source file org.schedulesdirect.api.exception.JsonEncodingException.java
/** * When String input is expected to be JSON encoded data, but isn't then this exception is thrown in response * @author Derek Battams <derek@battams.ca> * */ public class JsonEncodingException extends IOException {
From source file org.schedulesdirect.api.exception.InvalidJsonObjectException.java
/** * Represents an exception thrown when a received JSON object does not meet the expected format (i.e. expected fields are missing, etc.) * @author Derek Battams <derek@battams.ca> * */ public class InvalidJsonObjectException extends IOException {
From source file org.eleusoft.uri.apache.URIException.java
/**
* The URI parsing and escape encoding exception.
*
* @author <a href="mailto:jericho at apache.org">Sung-Gu</a>
* @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>
* @version $Revision: 1.1 $ $Date: 2002/03/14 15:14:01
From source file hudson.util.FormValidation.java
/**
* Represents the result of the form field validation.
*
* <p> Use one of the factory methods to create an instance, then return it from
* your <tt>doCheckXyz</tt> method. (Via {@link HttpResponse}, the returned
* object will render the result into {@link StaplerResponse}.) This way of
From source file org.apache.juneau.rest.client.RestCallException.java
/** * Exception representing a <code>400+</code> HTTP response code against a remote resource. */ public final class RestCallException extends IOException { private static final long serialVersionUID = 1L;
From source file org.codice.ddf.configuration.migration.ExportMigrationContextImpl.java
/**
* Special wrapper I/O exception used to internally determine if an I/O error occurred from the
* export output stream processing versus from reading processed entries during export. This allows
* us to determine if we can safely continue the export in order to gather as many errors as
* possible or if we are forced to stop the export.
*
From source file TarList.java
class TarException extends java.io.IOException { public TarException() { super(); } public TarException(String msg) {
From source file CircularCharBuffer.java
/**
* An indication that there was a buffer overflow.
*
* @author Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities
* @since ostermillerutils 1.00.00
*/
From source file TarOutputStream.java
class InvalidHeaderException extends IOException { public InvalidHeaderException() { super(); }