com.vast.surefire.scalatest19.WrappedCheckedException Maven / Gradle / Ivy
package com.vast.surefire.scalatest19;
/**
* @author David Pratt ([email protected])
*/
public class WrappedCheckedException extends RuntimeException {
private final Exception wrapped;
public WrappedCheckedException(Exception cause) {
this.wrapped = cause;
}
public Exception getWrapped() {
return wrapped;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy