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

de.akquinet.jbosscc.guttenbase.exceptions.ExportException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package de.akquinet.jbosscc.guttenbase.exceptions;

import java.io.IOException;
import java.sql.SQLException;

import de.akquinet.jbosscc.guttenbase.export.ExportDumpConnector;

/**
 * "Fake" {@link SQLException} in order to encapsulate {@link IOException} thrown during dumping or restoring data bases using
 * {@link ExportDumpConnector}
 * 
 * 

* © 2012 akquinet tech@spree *

* * @author M. Dahm */ public class ExportException extends SQLException { private static final long serialVersionUID = 1L; public ExportException(final String reason, final Exception e) { super(reason, e); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy