summaryrefslogtreecommitdiffstats
path: root/processing/src/main/java/com/yahoo/component/chain/dependencies/ordering/ConflictingNodeTypeException.java
blob: edf4a119e5cd5f97a007197e8b89f274a5f10e55 (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 Tony Vaagenes
 */
@SuppressWarnings("serial")
public class ConflictingNodeTypeException extends RuntimeException {

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

}