jme.exception
Class MonkeyGLException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byjme.exception.MonkeyRuntimeException
                  extended byjme.exception.MonkeyGLException
All Implemented Interfaces:
java.io.Serializable

public class MonkeyGLException
extends MonkeyRuntimeException

MonkeyGLException handles any exceptions related to OpenGL problems.

Version:
0.1.0
Author:
Mark Powell
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
MonkeyGLException()
          Default constructor creates a new MonkeyGLException with out any description of what caused the exception.
MonkeyGLException(java.lang.String desc)
          Constructor creates a new MonkeyGLException with a description of the exception that will be displayed when it's thrown.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MonkeyGLException

public MonkeyGLException()
Default constructor creates a new MonkeyGLException with out any description of what caused the exception.


MonkeyGLException

public MonkeyGLException(java.lang.String desc)
Constructor creates a new MonkeyGLException with a description of the exception that will be displayed when it's thrown.

Parameters:
desc - the description of this exception.