blob: 889e8b857e9f2b1955dee0458f50a9209144f97f [file] [log] [blame]
/** Copyright (c) 2008, 2012 Attensity Europe GmbH and brox IT Solutions GmbH. 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
*
* Contributors: Daniel Stucky (Attensity Europe GmbH) - initial implementation
**********************************************************************************************************************/
package org.eclipse.smila.jdbc;
/**
* Thrown on errors when passing an object to be written to a JdbcWriterService.
*/
public class JdbcWriterServiceException extends Exception {
/**
* exceptions are serializable.
*/
private static final long serialVersionUID = 1L;
/**
* create exception.
*
* @param message
* details
* @param cause
* reason
*/
public JdbcWriterServiceException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* create exception.
*
* @param message
* details
*/
public JdbcWriterServiceException(final String message) {
super(message);
}
}