mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-24 11:41:14 +00:00
Add BindingsNotRewrittenException
This commit is contained in:
parent
a498da9448
commit
51a7f0abdb
|
@ -47,4 +47,15 @@ namespace OpenTK
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override string Message { get; }
|
public override string Message { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This exception is thown when a binding method is called and the bindings have not been rewritten by Rewrite.exe.
|
||||||
|
/// </summary>
|
||||||
|
public class BindingsNotRewrittenException : Exception
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Constructs a new BindingsNotRewrittenException instance.
|
||||||
|
/// </summary>
|
||||||
|
public BindingsNotRewrittenException() : base("Rewrite.exe has not been run.") { }
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue