All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.pythagoras.messagebus.adapter.awssnssqs.exceptions.SNSTopicExistsException Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
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