* @param playlistName Name of the new playlist.
* @return The new playlist.
* @throws JitcaException if an error occurs.
*/
public UserPlaylist createPlaylist(String playlistName) throws JitcaException {
IITPlaylist newITPlaylist = this.iTunes.createPlaylistInSource(playlistName, this.source.getITSource());
return createUserPlaylist(newITPlaylist);
}