
net.sf.jstuff.integration.auth.AlreadyAuthenticatedException Maven / Gradle / Ivy
/*
* Copyright 2010-2022 by Sebastian Thomschke and contributors.
* SPDX-License-Identifier: EPL-2.0
*/
package net.sf.jstuff.integration.auth;
/**
* @author Sebastian Thomschke
*/
public class AlreadyAuthenticatedException extends RuntimeException {
private static final long serialVersionUID = 1L;
public AlreadyAuthenticatedException() {
}
public AlreadyAuthenticatedException(final String message) {
super(message);
}
public AlreadyAuthenticatedException(final String message, final Throwable cause) {
super(message, cause);
}
public AlreadyAuthenticatedException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy