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

de.xore.util.persistence.DatabaseException Maven / Gradle / Ivy

The newest version!
package de.xore.util.persistence;

/**
 * Is thrown, if an exception occured while accessing the database.
 * 

* Date: 21.06.2006
* Time: 23:07:32
* * @author Johannes Schneider - * Xore Systems */ public class DatabaseException extends RuntimeException { public DatabaseException() { } public DatabaseException( String message ) { super( message ); } public DatabaseException( String message, Throwable cause ) { super( message, cause ); } public DatabaseException( Throwable cause ) { super( cause ); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy