io.pythagoras.messagebus.adapter.awssnssqs.exceptions.SNSTopicExistsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adapter-sqs-sns Show documentation
Show all versions of adapter-sqs-sns Show documentation
Pythagoras SQS/SNS Adapter for Message Bus
package io.pythagoras.messagebus.adapter.awssnssqs.exceptions;
import io.pythagoras.messagebus.core.BaseRunTimeException;
public class SNSTopicExistsException extends BaseRunTimeException {
public SNSTopicExistsException(String message) {
super(message);
}
public SNSTopicExistsException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy