summaryrefslogtreecommitdiffstats
path: root/chain/src/main/java/com/yahoo/component/chain/dependencies/ordering/ConflictingNodeTypeException.java
blob: a233f0cd79f0ea5dee0e0b20c16d47cae600b693 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Yahoo Holdings. 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);
    }

}