![JAR search and dependency download from the Maven repository](/logo.png)
com.tomakehurst.crashlab.saboteur.NetworkFailure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crash-lab Show documentation
Show all versions of crash-lab Show documentation
A Java resilience testing library
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