blob: 27cc3cc34597ddbbe5c83a593a141a45ea1b2821 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.wikitext.maven.internal;
class BuildFailureException extends RuntimeException {
private static final long serialVersionUID = 1L;
public BuildFailureException(String message, Throwable cause) {
super(message, cause);
}
public BuildFailureException(String message) {
super(message);
}
}