
net.sf.jstuff.integration.persistence.spring.NestedDataAccessException Maven / Gradle / Ivy
/*
* Copyright 2010-2022 by Sebastian Thomschke and contributors.
* SPDX-License-Identifier: EPL-2.0
*/
package net.sf.jstuff.integration.persistence.spring;
import org.springframework.dao.DataAccessException;
/**
* @author Sebastian Thomschke
*/
public class NestedDataAccessException extends DataAccessException {
private static final long serialVersionUID = 1L;
public NestedDataAccessException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy