* @param msg The message describing the information.
* @param e The Exception that occured.
* @return An IStatus out of the given message and exception.
*/
public IStatus createInfoStatus(String msg, Exception e) {
return new Status(IStatus.INFO, Activator.getDefault().getBundle().getSymbolicName(), IStatus.INFO, msg, e);
}