/* This loads all the ArNetworking classes (they will be in the global
  * namespace) when this class is loaded: */
 static {
   try {
     System.loadLibrary("AriaJava");
     System.loadLibrary("ArNetworkingJava");
   } catch (UnsatisfiedLinkError e) {
     System.err.println(
         "Native code libraries (AriaJava and ArNetworkingJava .so or .DLL) failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n"
             + e);
     System.exit(1);
   }
 }