blob: 3ce94a0667c8ec14336d7b30453be0dfc4ac7269 [file] [log] [blame]
/*
* Copyright (c) 2014 Eike Stepper (Loehne, Germany) 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.resources.backend;
/**
* @author Eike Stepper
*/
public class BackendException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public BackendException()
{
}
public BackendException(String message)
{
super(message);
}
public BackendException(Throwable cause)
{
super(cause);
}
public BackendException(String message, Throwable cause)
{
super(message, cause);
}
}