summaryrefslogtreecommitdiffstats
path: root/container-di/src/main/java/com/yahoo/container/di/config/ResolveDependencyException.java
blob: d4fb1df397a6b83dba17a8fc488553f44aa70db9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2016 Yahoo Inc. 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);
    }
}