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

ru.vyarus.guice.persist.orient.db.PersistException Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
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