Example usage for org.eclipse.jdt.internal.core.builder ImageBuilderInternalException ImageBuilderInternalException

List of usage examples for org.eclipse.jdt.internal.core.builder ImageBuilderInternalException ImageBuilderInternalException

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.builder ImageBuilderInternalException ImageBuilderInternalException.

Prototype

public ImageBuilderInternalException(CoreException e) 

Source Link

Usage

From source file:org.eclipse.jdt.internal.core.builder.AbstractImageBuilder.java

License:Open Source License

protected RuntimeException internalException(CoreException t) {
    ImageBuilderInternalException imageBuilderException = new ImageBuilderInternalException(t);
    if (this.inCompiler)
        return new AbortCompilation(true, imageBuilderException);
    return imageBuilderException;
}