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            }
024            /**
025             * @param message
026             */
027            public DispatchException(String message) {
028                    super(message);
029            }
030            /**
031             * @param message
032             * @param cause
033             */
034            public DispatchException(String message, Throwable cause) {
035                    super(message, cause);
036            }
037            /**
038             * @param cause
039             */
040            public DispatchException(Throwable cause) {
041                    super(cause);
042            }
043    }