blob: 4ab0e39153667825d06121091caf0939975ece12 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tools.metadata;
public class PartialDumpException extends DumpException {
private static final long serialVersionUID = 1L;
/**
* Data read when the error happened. May be
* null.
*/
private Object partialContents;
public PartialDumpException(String msg, Object partialContents) {
super(msg);
this.partialContents = partialContents;
}
public PartialDumpException(String msg, Throwable cause, Object partialContents) {
super(msg, cause);
this.partialContents = partialContents;
}
/**
* Returns the contents partially read when this exception occurred. May
* return <code>null</code>.
*
* @return the contents partially read, or <code>null</code>
*/
public Object getPartialContents() {
return partialContents;
}
}