18 lines
454 B
C#
18 lines
454 B
C#
using System;
|
|
using SlatedGameToolkit.Framework.Graphics;
|
|
using SlatedGameToolkit.Framework.Graphics.Window;
|
|
|
|
namespace SlatedGameToolkit.Framework.Exceptions
|
|
{
|
|
public class OpenGLException : Exception {
|
|
public OpenGLException() : base() {
|
|
}
|
|
|
|
public OpenGLException(string message) : base(message) {
|
|
|
|
}
|
|
|
|
public OpenGLException(string message, Exception inner) : base(message, inner) {
|
|
}
|
|
}
|
|
} |