mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-08-29 19:56:27 -05:00
aloha
This commit is contained in:
14
Ryujinx/Cpu/Exceptions/VmmAccessViolationException.cs
Normal file
14
Ryujinx/Cpu/Exceptions/VmmAccessViolationException.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using ChocolArm64.Memory;
|
||||
using System;
|
||||
|
||||
namespace ChocolArm64.Exceptions
|
||||
{
|
||||
public class VmmAccessViolationException : Exception
|
||||
{
|
||||
private const string ExMsg = "Value at address 0x{0:x16} could not be \"{1}\"!";
|
||||
|
||||
public VmmAccessViolationException() { }
|
||||
|
||||
public VmmAccessViolationException(long Position, AMemoryPerm Perm) : base(string.Format(ExMsg, Position, Perm)) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user