Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 13 of 13) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DXmlErrorHandler.java78 public void error(SAXParseException exception) throws SAXException { in error() argument
79 handleError(exception, exception.getLineNumber()); in error()
88 public void fatalError(SAXParseException exception) throws SAXException { in fatalError() argument
89 handleError(exception, exception.getLineNumber()); in fatalError()
98 public void warning(SAXParseException exception) throws SAXException { in warning() argument
102 exception.getMessage(), in warning()
103 exception.getLineNumber(), in warning()
118 public void handleError(Exception exception, int lineNumber) { in handleError() argument
123 String message = exception.getMessage(); in handleError()
125 message = "Unknown error " + exception.getClass().getCanonicalName(); in handleError()
DLibraryClasspathContainerInitializer.java538 } catch (CoreException exception) { in processCPE()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
DAndroidXmlFormatter.java72 } catch (BadLocationException exception) { in formatMaster()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
DRemoteAdtTestRunner.java508 public void runFailed(String message, Exception exception) { in runFailed() argument
509 if (exception != null) { in runFailed()
510 AdtPlugin.logAndPrintError(exception, mLaunchInfo.getProject().getName(), in runFailed()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
DPostCompilerBuilder.java709 } catch (Exception exception) { in build()
715 if (exception instanceof CoreException) { in build()
716 if (((CoreException)exception).getStatus().getSeverity() == IStatus.CANCEL) { in build()
722 String msg = exception.getMessage(); in build()
724 msg = exception.getClass().getCanonicalName(); in build()
728 AdtPlugin.logAndPrintError(exception, project.getName(), msg); in build()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateHandlerTest.java818 public void log(@NonNull Severity severity, @Nullable Throwable exception, in ensureNoLintWarnings()
820 if (exception != null) { in ensureNoLintWarnings()
821 exception.printStackTrace(); in ensureNoLintWarnings()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
DProjectLintConfigurationTest.java198 public void log(@NonNull Severity severity, @Nullable Throwable exception,
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DAdtPlugin.java985 public static void log(Throwable exception, String format, Object ... args) {
992 Status status = new Status(IStatus.ERROR, PLUGIN_ID, message, exception);
1014 public static synchronized void logAndPrintError(Throwable exception, String tag,
1018 Status status = new Status(IStatus.ERROR, PLUGIN_ID, message, exception);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DRenderPreview.java569 Throwable exception = render.getException(); in renderSync() local
570 if (exception != null) { in renderSync()
571 AdtPlugin.log(exception, "Failure rendering preview " + getDisplayName()); in renderSync()
DGraphicalEditorPart.java1554 Throwable exception = session.getResult().getException(); in renderWithBridge() local
1555 if (exception != null && errorMessage == null) { in renderWithBridge()
1556 errorMessage = exception.toString(); in renderWithBridge()
1558 if (exception != null || (errorMessage != null && errorMessage.length() > 0)) { in renderWithBridge()
1559 logger.error(null, errorMessage, exception, null /*data*/); in renderWithBridge()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DEclipseLintClient.java199 public void log(@NonNull Severity severity, @Nullable Throwable exception, in log() argument
201 if (exception == null) { in log()
204 AdtPlugin.log(exception, format, args); in log()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DBuildHelper.java1021 } catch (CoreException exception) { in handleCPE()
/sdk/eclipse/
Dchanges.txt499 from an exception trace output to the code.