org.eclipse.emf.teneo.hibernate.HbMapperException Maven / Gradle / Ivy
/**
* Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) and others 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: Martin Taal $Id:
* HbMapperException.java,v 1.2 2007/02/01 12:35:55 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate;
import org.eclipse.emf.teneo.TeneoException;
/**
* Local Runtime Exception which logs.
*
* @author Martin Taal
* @version $Revision: 1.1 $
*/
public class HbMapperException extends TeneoException {
/**
* Serializable id
*/
private static final long serialVersionUID = 7433341056815136417L;
/**
* The constructor, logs the exception also
*/
public HbMapperException(String msg, Throwable cause) {
super(msg, cause);
}
/**
* The constructor, logs the exception also
*/
public HbMapperException(Throwable cause) {
this(cause.getMessage(), cause);
}
/**
* The constructor, logs the exception also
*/
public HbMapperException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy