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

}