![JAR search and dependency download from the Maven repository](/logo.png)
org.jboss.resteasy.client.exception.ResteasyNTLMEngineException Maven / Gradle / Ivy
package org.jboss.resteasy.client.exception;
/**
* @author Ron Sigal
* @version $Revision: 1.1 $
*
* Copyright Jul 28, 2012
*/
public class ResteasyNTLMEngineException extends ResteasyAuthenticationException
{
private static final long serialVersionUID = -5711578608757689465L;
public ResteasyNTLMEngineException()
{
}
public ResteasyNTLMEngineException(final String message)
{
super(message);
}
public ResteasyNTLMEngineException(final String message, final Throwable cause)
{
super(message, cause);
}
public ResteasyNTLMEngineException(final Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy