All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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