![JAR search and dependency download from the Maven repository](/logo.png)
io.smallrye.reactive.messaging.aws.sqs.i18n.AwsSqsExceptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-reactive-messaging-aws-sqs Show documentation
Show all versions of smallrye-reactive-messaging-aws-sqs Show documentation
A module for Smallrye reactive messaging integration with AWS SQS Service
The newest version!
package io.smallrye.reactive.messaging.aws.sqs.i18n;
import org.jboss.logging.Messages;
import org.jboss.logging.annotations.Cause;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageBundle;
/**
* Exceptions for AWS Sqs Connector
* Assigned ID range is 19400-19499
*/
@MessageBundle(projectCode = "SRMSG", length = 5)
public interface AwsSqsExceptions {
AwsSqsExceptions ex = Messages.getBundle(AwsSqsExceptions.class);
@Message(id = 19400, value = "Failed to retrieve AWS Sqs queue url")
IllegalStateException illegalStateUnableToRetrieveQueueUrl(@Cause Throwable t);
@Message(id = 19401, value = "Unable to load the class %s")
IllegalStateException illegalStateUnableToLoadClass(String className, @Cause Throwable t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy