blob: 8e265b9081be28a4bbfa99ea95540652a9660062 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2012 Ericsson
*
* 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
*
* Description:
*
* Contributors:
* Alvaro Sanchez-Leon - Initial Implementation
*******************************************************************************/
/**
*
*/
package org.eclipse.mylyn.reviews.r4e.core.model.serial.impl;
/**
* @author Alvaro Sanchez-Leon
*
*/
public class ResourceHandlingException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
/**
* @param message
*/
public ResourceHandlingException(String message) {
super(message);
}
/**
* @param message
* @param chainedExc
* - Original chained Exception
*/
public ResourceHandlingException(String message, Throwable chainedExc) {
super(message, chainedExc);
}
/**
* @param chainedExc
* Original chained Exception
*/
ResourceHandlingException(Throwable chainedExc) {
super(chainedExc);
}
}