aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
blob: 84bb1fc59e69158fa536d0b9750b983d333a28de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Ryujinx.HLE.Exceptions
{
    public class UndefinedInstructionException : Exception
    {
        private const string ExMsg = "The instruction at 0x{0:x16} (opcode 0x{1:x8}) is undefined!";

        public UndefinedInstructionException() : base() { }

        public UndefinedInstructionException(long position, int opCode) : base(string.Format(ExMsg, position, opCode)) { }
    }
}