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

com.enonic.xp.issue.IssueNotFoundException Maven / Gradle / Ivy

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

import java.text.MessageFormat;

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

@PublicApi
public final class IssueNotFoundException
    extends NotFoundException
{
    public IssueNotFoundException( final IssueId id )
    {
        super( MessageFormat.format( "Issue with id [{0}] was not found", id.toString() ) );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy