mirror of https://github.com/apache/activemq.git
Fix 1.5 dependency
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/branches/activemq-4.0@419239 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
371e892e2c
commit
1b0a344fea
|
@ -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