
com.itzmeds.adfs.client.SignOnException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-adfs-client Show documentation
Show all versions of android-adfs-client Show documentation
Android java client for authentication against active directory federation service(ADFS) - JWT,BST
The newest version!
package com.itzmeds.adfs.client;
@SuppressWarnings("serial")
public class SignOnException extends Exception {
public SignOnException() {
}
public SignOnException(String message) {
super(message);
}
public SignOnException(Throwable cause) {
super(cause);
}
public SignOnException(String message, Throwable cause) {
super(message, cause);
}
public SignOnException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy