Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save vorburger/d15a7e181ee46bf04a2db7d6c828d332 to your computer and use it in GitHub Desktop.

Select an option

Save vorburger/d15a7e181ee46bf04a2db7d6c828d332 to your computer and use it in GitHub Desktop.
/*
* 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