no.digipost.api.exceptions.MessageSenderIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdp-api-client Show documentation
Show all versions of sdp-api-client Show documentation
Klientfunksjonaltet for Sikker Digital Post
package no.digipost.api.exceptions;
import java.io.IOException;
public class MessageSenderIOException extends MessageSenderException {
public MessageSenderIOException(String message, IOException e) {
super(message, e);
}
}