All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springmodules.workflow.jbpm30.NestedDataAccessException Maven / Gradle / Ivy

package org.springmodules.workflow.jbpm30;

import org.springframework.dao.DataAccessException;

/**
 * @author Rpb Harrop
 */
public class NestedDataAccessException extends DataAccessException {

	public NestedDataAccessException(String message) {
		super(message);
	}

	public NestedDataAccessException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy