![JAR search and dependency download from the Maven repository](/logo.png)
com.jsftoolkit.utils.IOExceptionWrapper Maven / Gradle / Ivy
/**
*
*/
package com.jsftoolkit.utils;
import java.io.IOException;
public class IOExceptionWrapper extends RuntimeException {
private static final long serialVersionUID = 1L;
private final IOException wrapped;
public IOExceptionWrapper(IOException wrapped) {
super();
this.wrapped = wrapped;
}
public IOException getWrapped() {
return wrapped;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy