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

io.spotnext.spring.web.security.exception.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
package io.spotnext.spring.web.security.exception;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

/**
 * 

AuthenticationException class.

* * @author mojo2012 * @version 1.0 * @since 1.0 */ @SuppressFBWarnings("NM_SAME_SIMPLE_NAME_AS_SUPERCLASS") public class AuthenticationException extends org.springframework.security.core.AuthenticationException { private static final long serialVersionUID = 1L; /** *

Constructor for AuthenticationException.

* * @param msg a {@link java.lang.String} object. */ public AuthenticationException(final String msg) { super(msg); } /** *

Constructor for AuthenticationException.

* * @param msg a {@link java.lang.String} object. * @param rootCause a {@link java.lang.Throwable} object. */ public AuthenticationException(final String msg, final Throwable rootCause) { super(msg, rootCause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy