com.github.grzesiek_galezowski.test_environment.buffer.exceptions.ExceptionRaisedByConditionException Maven / Gradle / Ivy
package com.github.grzesiek_galezowski.test_environment.buffer.exceptions;
import org.assertj.core.api.Condition;
/**
* Created by grzes on 26.06.2017.
*/
public class ExceptionRaisedByConditionException extends RuntimeException {
public ExceptionRaisedByConditionException(
final Condition condition,
final Throwable exception) {
super(condition.toString()
+ " raised an exception for one of the items: "
+ exception.toString()
);
}
}