mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 03:50:46 -07:00
Move solution and projects to src
This commit is contained in:
24
src/Ryujinx.Memory/WindowsShared/WindowsApiException.cs
Normal file
24
src/Ryujinx.Memory/WindowsShared/WindowsApiException.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Memory.WindowsShared
|
||||
{
|
||||
class WindowsApiException : Exception
|
||||
{
|
||||
public WindowsApiException()
|
||||
{
|
||||
}
|
||||
|
||||
public WindowsApiException(string functionName) : base(CreateMessage(functionName))
|
||||
{
|
||||
}
|
||||
|
||||
public WindowsApiException(string functionName, Exception inner) : base(CreateMessage(functionName), inner)
|
||||
{
|
||||
}
|
||||
|
||||
private static string CreateMessage(string functionName)
|
||||
{
|
||||
return $"{functionName} returned error code 0x{WindowsApi.GetLastError():X}.";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user