rx.marble.ExpectObservableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marbletest4j Show documentation
Show all versions of marbletest4j Show documentation
Java port of RxJS marble tests
package rx.marble;
public class ExpectObservableException extends RuntimeException {
public ExpectObservableException(String message, String caller) {
super(message + "\n\n from assertion at " + caller + "\n\n----------------------\n");
}
}