summaryrefslogtreecommitdiffstats
path: root/container-di/src/main/java/com/yahoo/container/di/config/ResolveDependencyException.java
blob: 528b487d51c2677b1e71bd4eb91c652e5947ee2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.di.config;

/**
 * @author gjoranv
 * @since 5.17
 */
public class ResolveDependencyException extends RuntimeException {
    public ResolveDependencyException(String message) {
        super(message);
    }
}