001    package org.andromda.translation.ocl.testsuite;
002    
003    /**
004     * Any unchecked exception that will be thrown when an unexpected ContextElementFinder error occurs.
005     */
006    public class ContextElementFinderException
007            extends RuntimeException
008    {
009        private static final long serialVersionUID = 34L;
010        /**
011         * Constructs an instance of ContextElementFinderException.
012         *
013         * @param th
014         */
015        public ContextElementFinderException(Throwable th)
016        {
017            super(th);
018        }
019    
020        /**
021         * Constructs an instance of ContextElementFinderException.
022         *
023         * @param msg
024         */
025        public ContextElementFinderException(String msg)
026        {
027            super(msg);
028        }
029    
030        /**
031         * Constructs an instance of ContextElementFinderException.
032         *
033         * @param msg
034         * @param th
035         */
036        public ContextElementFinderException(String msg, Throwable th)
037        {
038            super(msg, th);
039        }
040    
041    }