Created
July 27, 2016 18:05
-
-
Save vorburger/d15a7e181ee46bf04a2db7d6c828d332 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved. | |
| * | |
| * This program and the accompanying materials are made available under the | |
| * terms of the Eclipse Public License v1.0 which accompanies this distribution, | |
| * and is available at http://www.eclipse.org/legal/epl-v10.html | |
| */ | |
| package org.opendaylight.netvirt.aclservice.tests.utils.inject; | |
| /** | |
| * Exception to indicate a programming error related to an InjectorProvider annotation (missing, or wrong value). | |
| * | |
| * @see InstanceProvidedBy | |
| * | |
| * @author Michael Vorburger | |
| */ | |
| public class InstanceProvidedByAnnotationException extends RuntimeException { | |
| private static final long serialVersionUID = 3290896476010416214L; | |
| public InstanceProvidedByAnnotationException(String message) { | |
| super(message); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment