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

com.amazonaws.util.FakeIOException Maven / Gradle / Ivy

Go to download

The AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.

There is a newer version: 1.12.780
Show newest version
package com.amazonaws.util;

import java.io.IOException;

/**
 * Used for simulating an IOException for test purposes.
 */
public class FakeIOException extends IOException {
    private static final long serialVersionUID = 1L;

    public FakeIOException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy