All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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()
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy