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

com.enonic.xp.repository.IndexException Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.repository;

public class IndexException
    extends RuntimeException
{

    public IndexException( final String message )
    {
        super( message );
    }

    public IndexException( final String message, final Exception e )
    {
        super( message, e );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy