aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs')
-rw-r--r--src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs b/src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs
new file mode 100644
index 00000000..fe41b02a
--- /dev/null
+++ b/src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace Ryujinx.HLE.Exceptions
+{
+ public class GuestBrokeExecutionException : Exception
+ {
+ private const string ExMsg = "The guest program broke execution!";
+
+ public GuestBrokeExecutionException() : base(ExMsg) { }
+ }
+} \ No newline at end of file