org.kapott.hbci.exceptions.MissingTanMediaException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbci4j-adorsys Show documentation
Show all versions of hbci4j-adorsys Show documentation
HBCI4j - Home Banking Computer Interface for Java - Clone from https://github.com/hbci4j/hbci4java
package org.kapott.hbci.exceptions;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = false)
public class MissingTanMediaException extends RuntimeException {
private String tanMediaNames;
public MissingTanMediaException(String tanMediaNames) {
super();
this.tanMediaNames = tanMediaNames;
}
}