ru.vyarus.guice.persist.orient.db.PersistException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guice-persist-orient Show documentation
Show all versions of guice-persist-orient Show documentation
Guice integration for OrientDB
package ru.vyarus.guice.persist.orient.db;
/**
* Root exception class for library specific exceptions.
*
* @author Vyacheslav Rusakov
* @since 28.02.2015
*/
public class PersistException extends RuntimeException {
public PersistException(final String message) {
super(message);
}
public PersistException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy