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

net.razorvine.pickle.PickleException Maven / Gradle / Ivy

package net.razorvine.pickle;

/**
 * Exception thrown when something goes wrong with pickling or unpickling.
 * 
 * @author Irmen de Jong ([email protected])
 */
public class PickleException extends RuntimeException {
	private static final long serialVersionUID = -673995077281654640L;

	public PickleException(String message, Throwable cause) {
		super(message, cause);
	}

	public PickleException(String message) {
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy