Update of /cvsroot/csdopenglnet/csdOpenGL/platform
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13407/platform
Added Files:
Exceptions.cs
Log Message:
Restrukturierung
--- NEW FILE: Exceptions.cs ---
using System;
namespace csDragons {
namespace OpenGL {
namespace Platform {
/** \brief General OpenGL Error
*
* This class is the base class for all Platform-OpenGL Exceptions
*/
public class GLPlatformException : csDragons.OpenGL.GLException {};
/** \brief No GL Context available
*
* This Exception is raised if there is an fatal error
* during obtaining the OpenGL context.
*/
public class NoGLContextException : GLPlatformException {}
/** \brief No X Display available
*
* This Exception is raised if no XDisplay can be used.
*/
public class NoXDisplayException : GLPlatformException {}
}
}
}
|