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

org.mongodb.morphia.mapping.lazy.proxy.LazyReferenceFetchingException Maven / Gradle / Ivy

The newest version!
package org.mongodb.morphia.mapping.lazy.proxy;


import java.util.ConcurrentModificationException;


/**
 * @author Uwe Schaefer, ([email protected])
 */
public class LazyReferenceFetchingException extends ConcurrentModificationException {
    private static final long serialVersionUID = 1L;

    /**
     * Creates a LazyReferenceFetchingException with the given message
     *
     * @param msg the message to log
     */
    public LazyReferenceFetchingException(final String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy