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

com.enonic.xp.app.ApplicationNotFoundException Maven / Gradle / Ivy

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

import java.text.MessageFormat;

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.exception.NotFoundException;

@PublicApi
public final class ApplicationNotFoundException
    extends NotFoundException
{
    public ApplicationNotFoundException( final ApplicationKey applicationKey )
    {
        super( MessageFormat.format( "Application [{0}] was not found", applicationKey ) );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy