2018-02-10 18:20:46 +01:00
|
|
|
using System;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.Exceptions
|
2018-02-10 18:20:46 +01:00
|
|
|
{
|
|
|
|
public class UndefinedInstructionException : Exception
|
|
|
|
{
|
|
|
|
private const string ExMsg = "The instruction at 0x{0:x16} (opcode 0x{1:x8}) is undefined!";
|
|
|
|
|
|
|
|
public UndefinedInstructionException() : base() { }
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public UndefinedInstructionException(long position, int opCode) : base(string.Format(ExMsg, position, opCode)) { }
|
2018-02-10 18:20:46 +01:00
|
|
|
}
|
|
|
|
}
|