blob: 19569399a56d27fb0d37e764ad0930aeb2b897bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* VMware Inc. - initial contribution
*******************************************************************************/
package org.eclipse.virgo.kernel.config.internal.ovf;
/**
* Indicates an exception when parsing an OVF document.
* <p />
*
* <strong>Concurrent Semantics</strong><br />
*
* Threadsafe.
*
*/
final class OvfParseException extends RuntimeException {
private static final long serialVersionUID = 8134710938140233L;
public OvfParseException(String message, Throwable cause) {
super(message, cause);
}
}