001/*
002 * Copyright (c) 2007-2017 Xplenty, Inc. All Rights Reserved.
003 *
004 * Project and contact information: http://www.cascading.org/
005 *
006 * This file is part of the Cascading project.
007 *
008 * Licensed under the Apache License, Version 2.0 (the "License");
009 * you may not use this file except in compliance with the License.
010 * You may obtain a copy of the License at
011 *
012 *     http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing, software
015 * distributed under the License is distributed on an "AS IS" BASIS,
016 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017 * See the License for the specific language governing permissions and
018 * limitations under the License.
019 */
020
021package cascading.flow.planner.rule;
022
023import cascading.flow.FlowElement;
024import cascading.flow.planner.PlannerException;
025import cascading.flow.planner.graph.ElementGraph;
026
027/**
028 *
029 */
030public class UnsupportedPlanException extends PlannerException
031  {
032  public UnsupportedPlanException()
033    {
034    }
035
036  public UnsupportedPlanException( FlowElement flowElement, String message )
037    {
038    super( flowElement, message );
039    }
040
041  public UnsupportedPlanException( FlowElement flowElement, String message, Throwable throwable )
042    {
043    super( flowElement, message, throwable );
044    }
045
046  public UnsupportedPlanException( FlowElement flowElement, String message, Throwable throwable, ElementGraph elementGraph )
047    {
048    super( flowElement, message, throwable, elementGraph );
049    }
050
051  public UnsupportedPlanException( String string )
052    {
053    super( string );
054    }
055
056  public UnsupportedPlanException( String string, Throwable throwable )
057    {
058    super( string, throwable );
059    }
060
061  public UnsupportedPlanException( Throwable throwable )
062    {
063    super( throwable );
064    }
065
066  public UnsupportedPlanException( String string, ElementGraph elementGraph )
067    {
068    super( string, elementGraph );
069    }
070
071  public UnsupportedPlanException( String string, Throwable throwable, ElementGraph elementGraph )
072    {
073    super( string, throwable, elementGraph );
074    }
075
076  public UnsupportedPlanException( Rule rule, Exception exception )
077    {
078    super( rule, exception );
079    }
080  }