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

org.nakedobjects.metamodel.commons.encoding.FailedToDeserializeException Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package org.nakedobjects.metamodel.commons.encoding;

import java.io.IOException;

public class FailedToDeserializeException extends IOException {

	private static final long serialVersionUID = 1L;
	
	private Throwable cause;
	
	public FailedToDeserializeException(ClassNotFoundException cause) {
		this.cause = cause;
	}

	@Override
	public Throwable getCause() {
		return cause;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy