From 0caac8ae47d2f46152b9b9beebec101255462255 Mon Sep 17 00:00:00 2001 From: jw098 Date: Sat, 2 Aug 2025 11:20:12 -0700 Subject: [PATCH] UnexpectedBattleException now inherits OperationFailedException --- .../CommonFramework/Exceptions/UnexpectedBattleException.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SerialPrograms/Source/CommonFramework/Exceptions/UnexpectedBattleException.h b/SerialPrograms/Source/CommonFramework/Exceptions/UnexpectedBattleException.h index 30e609c5c1..ffb964d4a1 100644 --- a/SerialPrograms/Source/CommonFramework/Exceptions/UnexpectedBattleException.h +++ b/SerialPrograms/Source/CommonFramework/Exceptions/UnexpectedBattleException.h @@ -16,7 +16,7 @@ class FatalProgramException; // Thrown by subroutines if caught in an wild battle in-game unexpectedly. // These include recoverable errors which can be consumed by the program. -class UnexpectedBattleException : public ScreenshotException{ +class UnexpectedBattleException : public OperationFailedException{ public: using ScreenshotException::ScreenshotException;