From fca650579d7c6e1e19c12912fe92f36d5ec629ab Mon Sep 17 00:00:00 2001 From: Marco Bavagnoli Date: Thu, 23 May 2024 14:17:45 +0200 Subject: [PATCH] fix exception --- lib/src/exceptions/exceptions.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/exceptions/exceptions.dart b/lib/src/exceptions/exceptions.dart index 35f3006..e4e1afc 100644 --- a/lib/src/exceptions/exceptions.dart +++ b/lib/src/exceptions/exceptions.dart @@ -100,7 +100,7 @@ abstract class SoLoudCppException extends SoLoudException { case PlayerErrors.playerAlreadyInited: return const SoLoudPlayerAlreadyInitializedException(); case PlayerErrors.soundHandleNotFound: - return const SoLoudSoundHashNotFoundCppException(); + return const SoLoudSoundHandleNotFoundCppException(); } } }