Added no-arg constructors.
This commit is contained in:
@@ -24,6 +24,10 @@ package org.springframework.integration;
|
||||
@SuppressWarnings("serial")
|
||||
public class MessageDeliveryException extends MessagingException {
|
||||
|
||||
public MessageDeliveryException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public MessageDeliveryException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
@@ -24,6 +24,10 @@ package org.springframework.integration;
|
||||
@SuppressWarnings("serial")
|
||||
public class MessageHandlingException extends MessagingException {
|
||||
|
||||
public MessageHandlingException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public MessageHandlingException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
@@ -24,6 +24,10 @@ package org.springframework.integration;
|
||||
@SuppressWarnings("serial")
|
||||
public class MessagingException extends RuntimeException {
|
||||
|
||||
public MessagingException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public MessagingException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user