blob: 722fb0d01b62825f51fbe71230c82cdd0c26274e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2018 Borland Software Corporation and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.blackbox.java;
import org.eclipse.emf.common.util.BasicDiagnostic;
import org.eclipse.emf.common.util.Diagnostic;
class DiagnosticUtil {
static final String DIAGNOSTIC_SOURCE = "org.eclipse.m2m.qvt.oml.blackbox.java"; //$NON-NLS-1$
// no instances
private DiagnosticUtil() {
super();
}
public static BasicDiagnostic createRootDiagnostic(String message) {
return new BasicDiagnostic(DIAGNOSTIC_SOURCE, 0, message, null);
}
public static BasicDiagnostic createErrorDiagnostic(String message, Exception exception) {
return new BasicDiagnostic(Diagnostic.ERROR, DIAGNOSTIC_SOURCE, 0, message, new Object[] { exception });
}
public static BasicDiagnostic createErrorDiagnostic(String message) {
return new BasicDiagnostic(Diagnostic.ERROR, DIAGNOSTIC_SOURCE, 0, message, null);
}
}