/* * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang.invoke; /** * This is a place-holder class. Some HotSpot implementations need to see it. */ final class InvokeDynamic { private InvokeDynamic() { throw new InternalError(); } // do not instantiate }