
com.simplaex.bedrock.ParallelExecutionException Maven / Gradle / Ivy
package com.simplaex.bedrock;
import lombok.Getter;
public class ParallelExecutionException extends RuntimeException {
@Getter
private final Seq causes;
public ParallelExecutionException(final Throwable... causes) {
this.causes = Seq.ofArray(causes);
}
public ParallelExecutionException(final Seq causes) {
this.causes = causes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy