no.digipost.api.exceptions.MessageSenderException 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
The newest version!
package no.digipost.api.exceptions;
public abstract class MessageSenderException extends RuntimeException {
public MessageSenderException(String message) {
super(message);
}
public MessageSenderException(String message, Throwable cause) {
super(message, cause);
}
}