blob: 760e5863be9dbf04a62df9c6d53683e8ebe9c21e [file] [log] [blame]
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package javax.naming.spi;
import java.util.Hashtable;
import javax.naming.*;
public class ObjectFactory
{
public Object getObjectInstance (Object obj,
Name name,
Context nameCtx,
Hashtable environment)
throws Exception
{
throw new Error ("javax.naming.spi.ObjectFactory.getObjectInstance not implemented");
}
}