mirror of https://github.com/apache/activemq.git
Fix 1.5 dependency
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@419238 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8b215705a2
commit
104305bac0
|
@ -30,7 +30,8 @@ public class BrokerStoppedException extends IllegalStateException {
|
|||
}
|
||||
|
||||
public BrokerStoppedException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
super(message);
|
||||
initCause(cause);
|
||||
}
|
||||
|
||||
public BrokerStoppedException(String s) {
|
||||
|
@ -38,7 +39,7 @@ public class BrokerStoppedException extends IllegalStateException {
|
|||
}
|
||||
|
||||
public BrokerStoppedException(Throwable cause) {
|
||||
super(cause);
|
||||
initCause(cause);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue