001 /*
002 @license.text@
003 */
004 package biz.hammurapi.util;
005
006 import biz.hammurapi.RuntimeException;
007
008 /**
009 * @author Pavel Vlasov
010 * @version $Revision: 1.1 $
011 */
012 public class DispatchException extends RuntimeException {
013
014 /**
015 * Comment for <code>serialVersionUID</code>
016 */
017 private static final long serialVersionUID = -1573327186427142145L;
018 /**
019 *
020 */
021 public DispatchException() {
022 super();
023 // TODO Auto-generated constructor stub
024 }
025 /**
026 * @param message
027 */
028 public DispatchException(String message) {
029 super(message);
030 // TODO Auto-generated constructor stub
031 }
032 /**
033 * @param message
034 * @param cause
035 */
036 public DispatchException(String message, Throwable cause) {
037 super(message, cause);
038 // TODO Auto-generated constructor stub
039 }
040 /**
041 * @param cause
042 */
043 public DispatchException(Throwable cause) {
044 super(cause);
045 // TODO Auto-generated constructor stub
046 }
047 }