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

com.tomakehurst.crashlab.saboteur.NetworkFailure Maven / Gradle / Ivy

The newest version!
package com.tomakehurst.crashlab.saboteur;

public class NetworkFailure extends Fault {

    public static NetworkFailure networkFailure(String name) {
        NetworkFailure networkFailure = new NetworkFailure();
        networkFailure.setName(name);
        return networkFailure;
    }

    @Override
    public Type getType() {
        return Type.NETWORK_FAILURE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy