name.remal.gradle_plugins.toolkit.testkit.functional.SuppressedMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testkit Show documentation
Show all versions of testkit Show documentation
Remal Gradle plugins: toolkit: testkit
package name.remal.gradle_plugins.toolkit.testkit.functional;
import javax.annotation.Nullable;
import lombok.Builder;
import lombok.Builder.Default;
import lombok.Value;
@Value
@Builder
public class SuppressedMessage {
@Default
boolean startsWith = false;
String message;
@Nullable
@Default
String stackTracePrefix = null;
}