001    package de.jw.cloud42.core.eventing;
002    
003    
004    /** 
005     * Class to convey a exception that occured in eventing module.
006     * 
007     * @author fbitzer
008     */
009    public class EventingException extends Exception {
010    
011        public EventingException(String cause) {
012            super(cause);
013        }
014    
015        public EventingException(String cause, Exception superException) {
016            super(cause, superException);
017        }
018    
019        public EventingException(Exception superException) {
020            super(superException);
021        }
022    }