aboutsummaryrefslogtreecommitdiffstats
path: root/chain/src/main/java/com/yahoo/component/chain/dependencies/ordering/ConflictingNodeTypeException.java
blob: 75b4025eef07f4b218b29a7bb75855cef3dee6f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.component.chain.dependencies.ordering;

/**
 * Thrown if a searcher provides the same name as a phase.
 *
 * @author  tonytv
 */
@SuppressWarnings("serial")
public class ConflictingNodeTypeException extends RuntimeException {

    public ConflictingNodeTypeException(String message) {
        super(message);
    }

}