aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Exceptions/GuestBrokeExecutionException.cs
blob: db4929c5bc7ea1efde7f4fbde330a46ce2adcead (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Ryujinx.Core.OsHle.Exceptions
{
    public class GuestBrokeExecutionException : Exception
    {
        private const string ExMsg = "The guest program broke execution!";

        public GuestBrokeExecutionException() : base(ExMsg) { }
    }
}