blob: b7c774b256da612c65e5639cba6826b5cad0f7e5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Christian W. Damus and others.
* 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:
* Christian W. Damus - initial API and implementation
*
*******************************************************************************/
package org.eclipse.mdht.transform.core;
/**
* An exception that signals failure of a transform or some component of a transform to complete.
*/
public class TransformationException extends Exception {
private static final long serialVersionUID = 1L;
public TransformationException(String message) {
super(message);
}
public TransformationException(String message, Throwable cause) {
super(message, cause);
}
}