com.enonic.xp.exception.NotFoundException Maven / Gradle / Ivy
package com.enonic.xp.exception;
import com.enonic.xp.annotation.PublicApi;
@PublicApi
public abstract class NotFoundException
extends BaseException
{
public NotFoundException( final String message )
{
super( message );
}
public NotFoundException( final Throwable t, final String message )
{
super( t, message );
}
@Deprecated
public NotFoundException( final String message, final Object... args )
{
super( message, args );
}
@Deprecated
public NotFoundException( final Throwable cause, final String message, final Object... args )
{
super( cause, message, args );
}
}