001    /**
002     * Copyright 2005-2014 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.rice.krms.api.engine;
017    
018    import org.kuali.rice.core.api.exception.RiceRuntimeException;
019    
020    /**
021     * A runtime exception which indicates that some resource required during engine
022     * execution is unavailable. 
023     * 
024     * @author Kuali Rice Team (rice.collab@kuali.org)
025     *
026     */
027    public class EngineResourceUnavailableException extends RiceRuntimeException {
028    
029            private static final long serialVersionUID = 4936540099245413634L;
030    
031            /**
032             * @see RiceRuntimeException#RiceRuntimeException()
033             */
034            public EngineResourceUnavailableException() {
035                    super();
036            }
037    
038            /**
039             * @see RiceRuntimeException#RiceRuntimeException(String, Throwable)
040         * @param message the exception message
041         * @param cause the root Throwable cause.
042         */
043            public EngineResourceUnavailableException(String message, Throwable cause) {
044                    super(message, cause);
045            }
046    
047            /**
048             * @see RiceRuntimeException#RiceRuntimeException(String)
049         * @param message the exception message
050             */
051            public EngineResourceUnavailableException(String message) {
052                    super(message);
053            }
054    
055            /**
056             * @see RiceRuntimeException#RiceRuntimeException(Throwable)
057         * @param cause the root Throwable cause.
058             */
059            public EngineResourceUnavailableException(Throwable cause) {
060                    super(cause);
061            }
062            
063    }