blob: 5df1af7abf3ab6c25f40306bfcfecd16dc676a0e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 University of Illinois All rights reserved. This program
* and the accompanying materials are made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Albert L. Rossi - design and implementation
******************************************************************************/
package org.eclipse.ptp.rm.jaxb.core.utils;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.ptp.rm.jaxb.core.JAXBCorePlugin;
/**
* Convenience methods for handling CoreExceptions and Status.ERROR.
*
* @author arossi
*/
public class CoreExceptionUtils {
private CoreExceptionUtils() {
}
/**
* @param message
* @param t
* @return error status object
*/
public static IStatus getErrorStatus(String message, Throwable t) {
if (t != null) {
JAXBCorePlugin.log(t);
}
return new Status(Status.ERROR, JAXBCorePlugin.getUniqueIdentifier(), Status.ERROR, message, t);
}
/**
* @param message
* @param t
* @return exception
*/
public static CoreException newException(String message, Throwable t) {
return new CoreException(getErrorStatus(message, t));
}
}