1 18 package org.apache.activemq.broker; 19 20 25 public class BrokerStoppedException extends IllegalStateException { 26 27 private static final long serialVersionUID = -3435230276850902220L; 28 29 public BrokerStoppedException() { 30 super(); 31 } 32 33 public BrokerStoppedException(String message, Throwable cause) { 34 super(message); 35 initCause(cause); 36 } 37 38 public BrokerStoppedException(String s) { 39 super(s); 40 } 41 42 public BrokerStoppedException(Throwable cause) { 43 initCause(cause); 44 } 45 46 } 47 | Popular Tags |