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

com.enonic.xp.security.auth.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.security.auth;

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

@PublicApi
public class AuthenticationException
    extends BaseException
{
    public AuthenticationException( final String message )
    {
        super( message );
    }

    public AuthenticationException( final Throwable t, final String message )
    {
        super( t, message );
    }

    @Deprecated
    public AuthenticationException( final String message, final Object... args )
    {
        super( message, args );
    }

    @Deprecated
    public AuthenticationException( final Throwable cause, final String message, final Object... args )
    {
        super( cause, message, args );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy