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:
Hiram R. Chirino 2006-07-05 14:34:37 +00:00
parent 8b215705a2
commit 104305bac0
1 changed files with 3 additions and 2 deletions

View File

@ -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);
}
}