com.shinesolutions.aemorchestrator.exception.MessageHandlerNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-orchestrator Show documentation
Show all versions of aem-orchestrator Show documentation
Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder
package com.shinesolutions.aemorchestrator.exception;
public class MessageHandlerNotFoundException extends Exception {
private static final long serialVersionUID = 1L;
public MessageHandlerNotFoundException(String messageSubject) {
super("No message handler found for message with subject: " + messageSubject);
}
}