blob: 6848249eaf2b157b41f2ce84d899ff60f245424e [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.api.base.query;
/**
* Thrown to indicate errors while querying data.
*
* @since 1.0.0
* @author Viktor Stoehr, Gigatronik Ingolstadt GmbH
*/
public final class DataAccessException extends RuntimeException {
// ======================================================================
// Class variables
// ======================================================================
private static final long serialVersionUID = 5024184555274518451L;
// ======================================================================
// Constructors
// ======================================================================
/**
* Constructor.
*
* @param message The error message.
*/
public DataAccessException(String message) {
super(message);
}
/**
* Constructor.
*
* @param message The error message.
* @param throwable The origin cause.
*/
public DataAccessException(String message, Throwable throwable) {
super(message, throwable);
}
}