blob: 13246c21b8d07964299b517e56982a9bc80bd9db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 EfficiOS Inc., Philippe Proulx
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.internal.provisional.analysis.lami.core.module;
/**
* Class-specific exception, for when things go wrong with the
* {@link LamiAnalysisFactoryFromConfigFile}.
*/
public class LamiAnalysisFactoryException extends Exception {
private static final long serialVersionUID = 1349804105078874111L;
/**
* Default constructor
*/
public LamiAnalysisFactoryException() {
super();
}
/**
* Constructor specifying a message
*
* @param message
* The exception message
*/
public LamiAnalysisFactoryException(String message) {
super(message);
}
/**
* Constructor specifying both a cause and a message
*
* @param message
* The exception message
* @param cause
* The exception that caused this one
*/
public LamiAnalysisFactoryException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructor specifying a cause
*
* @param cause
* The exception that caused this one
*/
public LamiAnalysisFactoryException(Throwable cause) {
super(cause);
}
}