net.sf.cotta.test.assertion.ExceptionAssert Maven / Gradle / Ivy
The newest version!
package net.sf.cotta.test.assertion;
public class ExceptionAssert extends BaseAssert {
public ExceptionAssert(Throwable value) {
super(value);
}
@SuppressWarnings({"ThrowableResultOfMethodCallIgnored"})
public StringAssert message() {
return new StringAssert(value().getMessage());
}
}