From c2714fe763ee13df3d3bedfb93101027c83f542f Mon Sep 17 00:00:00 2001 From: Caspian Rychlik-Prince Date: Fri, 28 Mar 2003 19:07:50 +0000 Subject: [PATCH] Removed Exception from constructor --- src/java/org/lwjgl/opengl/BaseGL.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/lwjgl/opengl/BaseGL.java b/src/java/org/lwjgl/opengl/BaseGL.java index 38056734..24b35dc1 100644 --- a/src/java/org/lwjgl/opengl/BaseGL.java +++ b/src/java/org/lwjgl/opengl/BaseGL.java @@ -96,7 +96,7 @@ public class BaseGL extends Window { * @param depth Required depth bits * @param stencil Required stencil bits */ - public BaseGL(String title, int x, int y, int width, int height, int bpp, int alpha, int depth, int stencil) throws Exception { + public BaseGL(String title, int x, int y, int width, int height, int bpp, int alpha, int depth, int stencil) { super(title, x, y, width, height); this.x = x; @@ -117,7 +117,7 @@ public class BaseGL extends Window { * @param x, y The position of the window. May be ignored. * @param width, height The size of the window's client area */ - public BaseGL(String title, int bpp, int alpha, int depth, int stencil) throws Exception { + public BaseGL(String title, int bpp, int alpha, int depth, int stencil) { super(title, 0, 0, Display.getWidth(), Display.getHeight()); this.x = 0;