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

com.enonic.xp.exception.NotFoundException Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
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 );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy