* the file path with file name
* @return the audio clip
*/
public static AudioClip audioClip(final String fileName) {
try {
return new AudioClip(RS.class.getResource(fileName).toExternalForm());
} catch (final Throwable t) {
log.error("Unable to get audio clip for resource named: " + fileName);
}
return null;
}