1 /* Copyright (C) 2003, 2005  Free Software Foundation
2 
3    This file is part of libgcj.
4 
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
7 details.  */
8 
9 #include <config.h>
10 #include <platform.h>
11 
12 #include <java/net/SocketException.h>
13 #include <java/net/VMNetworkInterface.h>
14 #include <java/util/Vector.h>
15 
16 ::java::util::Vector*
getInterfaces()17 java::net::VMNetworkInterface::getInterfaces ()
18 {
19   throw new SocketException (
20     JvNewStringLatin1 ("VMNetworkInterface.getInterfaces: unimplemented"));
21 }
22