
com.tomakehurst.crashlab.saboteur.ServiceFailure 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 ServiceFailure extends Fault {
public static ServiceFailure serviceFailure(String name) {
ServiceFailure serviceFailure = new ServiceFailure();
serviceFailure.setName(name);
return serviceFailure;
}
@Override
public Type getType() {
return Type.SERVICE_FAILURE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy