Add file name to exception.

This commit is contained in:
Ottermandias 2023-03-11 21:19:53 +01:00
parent d8e2a5ba28
commit 19dde3cbc4

View file

@ -291,7 +291,7 @@ public partial class Mod
}
catch( Exception ex )
{
throw new Exception( "Could not split multi group file on .pmp import.", ex );
throw new Exception( $"Could not split multi group file {groupFile.Name} on .pmp import.", ex );
}
}
}