Skip to content

Commit

Permalink
Fix chaining exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Apr 21, 2023
1 parent 8fe2bf0 commit d7187cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public SpecificPlaylist readFrom(Path playlistPath, OpenOption... options) throw
}
catch (IOException e)
{
throw new IOException(String.format("Failed to read playlist using provider-id=%s: \"%s\"", playlistProvider.getId(), playlistPath));
throw new IOException(String.format("Failed to read playlist using provider-id=%s: \"%s\"", playlistProvider.getId(), playlistPath), e);
}
}
}
Expand Down

0 comments on commit d7187cd

Please sign in to comment.