From a2a218234b3d51a87577df5f4879bfe1917529c0 Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Fri, 18 Jul 2008 12:24:17 +0000
Subject: - Using new config feature: 'IgnoreExtendedInterfaceSymbols <java
 class source file>' and get rid of manual 'Ignore' configs for common stuff
 in the base interfaces.

- Add: GLUnsupportedException:
    - Using new config feature 'UnsupportedExceptionType GLUnsupportedException'
    - GLUnsupportedException is used for anything 'UnsupportedOperationException'

- GLU:
    - GLU itself is no more abstract
    - GLU contains the tesselator implementation
        - name, return type, modifiers and arguments
    - createGLU(..)
        - operated by profile name now.
        - GLU itself will be used for GLES2

- Cleanup:
    - gluegen/GL configs ..

git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1725 232f8b59-042b-4e1e-8c03-345bb8c30851
---
 src/classes/com/sun/opengl/impl/GLReflection.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/classes/com/sun/opengl/impl/GLReflection.java')

diff --git a/src/classes/com/sun/opengl/impl/GLReflection.java b/src/classes/com/sun/opengl/impl/GLReflection.java
index 6898db8..5e55aba 100644
--- a/src/classes/com/sun/opengl/impl/GLReflection.java
+++ b/src/classes/com/sun/opengl/impl/GLReflection.java
@@ -48,12 +48,12 @@ public final class GLReflection {
     try {
         factoryClass = Class.forName(clazzName);
         if (factoryClass == null) {
-          throw new GLException(clazzName + " not available");
+          throw new GLUnsupportedException(clazzName + " not available");
         }
         try {
             factory = factoryClass.getDeclaredConstructor( cstrArgTypes );
         } catch(NoSuchMethodException nsme) {
-          throw new GLException("Constructor: '" + clazzName + "("+cstrArgTypes+")' not found");
+          throw new GLUnsupportedException("Constructor: '" + clazzName + "("+cstrArgTypes+")' not found");
         }
         return factory;
     } catch (Exception e) {
-- 
cgit v1.2.3