package net.avcompris.beans;
/**
* exception thrown when a Bean could not be deserialized from stream to memory.
*
* @author David Andrianavalontsalama
*/
public class LoadBeanException extends RuntimeException {
private static final long serialVersionUID = -3008807449264766808L;
public LoadBeanException(final String message, final Throwable cause) {
super(message, cause);
}
public LoadBeanException(final String message) {
super(message);
}
}
|