com.duosecurity.exception.DuoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duo-universal-sdk Show documentation
Show all versions of duo-universal-sdk Show documentation
Duo Web SDK for two-factor authentication
package com.duosecurity.exception;
public class DuoException extends Exception {
public DuoException(String message) {
super(message);
}
public DuoException(String message, Throwable e) {
super(message, e);
}
}