com.github.dakusui.actionunit.exceptions.ActionAssertionError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of actionunit Show documentation
Show all versions of actionunit Show documentation
A library to build 'action' structure for testing
package com.github.dakusui.actionunit.exceptions;
public class ActionAssertionError extends AssertionError {
public ActionAssertionError(String message) {
super(message);
}
}