Searched refs:ExceptionWithContext (Results 1 - 25 of 33) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/util/
H A DExceptionWithContext.java25 public class ExceptionWithContext class in inherits:RuntimeException
33 * {@link ExceptionWithContext}, or a newly-constructed exception if it
40 public static ExceptionWithContext withContext(Throwable ex, String str) {
41 ExceptionWithContext ewc;
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
58 public ExceptionWithContext(String message) { method in class:ExceptionWithContext
67 public ExceptionWithContext(Throwable cause) { method in class:ExceptionWithContext
77 public ExceptionWithContext(Strin method in class:ExceptionWithContext
[all...]
H A DMutabilityException.java23 extends ExceptionWithContext {
/dalvik/dx/src/com/android/dx/util/
H A DExceptionWithContext.java25 public class ExceptionWithContext class in inherits:RuntimeException
33 * {@link ExceptionWithContext}, or a newly-constructed exception if it
40 public static ExceptionWithContext withContext(Throwable ex, String str) {
41 ExceptionWithContext ewc;
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
58 public ExceptionWithContext(String message) { method in class:ExceptionWithContext
67 public ExceptionWithContext(Throwable cause) { method in class:ExceptionWithContext
77 public ExceptionWithContext(Strin method in class:ExceptionWithContext
[all...]
H A DDexException.java23 public final class DexException extends ExceptionWithContext {
H A DMutabilityException.java23 extends ExceptionWithContext {
/dalvik/dx/src/com/android/dx/cf/code/
H A DSimException.java19 import com.android.dx.util.ExceptionWithContext;
25 extends ExceptionWithContext {
H A DLocalsArray.java22 import com.android.dx.util.ExceptionWithContext;
58 public abstract void annotate(ExceptionWithContext ex);
H A DExecutionStack.java21 import com.android.dx.util.ExceptionWithContext;
81 public void annotate(ExceptionWithContext ex) {
H A DOneLocalsArray.java22 import com.android.dx.util.ExceptionWithContext;
59 public void annotate(ExceptionWithContext ex) {
H A DFrame.java22 import com.android.dx.util.ExceptionWithContext;
411 public void annotate(ExceptionWithContext ex) {
/dalvik/dx/src/com/android/dx/cf/iface/
H A DParseException.java19 import com.android.dx.util.ExceptionWithContext;
25 extends ExceptionWithContext {
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DStdConstantPool.java19 import com.android.dexgen.util.ExceptionWithContext;
133 * @throws ExceptionWithContext always thrown
136 throw new ExceptionWithContext("invalid constant pool index " +
/dalvik/dx/src/com/android/dx/rop/cst/
H A DStdConstantPool.java19 import com.android.dx.util.ExceptionWithContext;
133 * @throws ExceptionWithContext always thrown
136 throw new ExceptionWithContext("invalid constant pool index " +
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDexFile.java29 import com.android.dexgen.util.ExceptionWithContext;
529 throw ExceptionWithContext.withContext(ex,
549 throw new ExceptionWithContext("excess write of " +
555 ExceptionWithContext ec;
556 if (ex instanceof ExceptionWithContext) {
557 ec = (ExceptionWithContext) ex;
559 ec = new ExceptionWithContext(ex);
H A DOffsettedItem.java20 import com.android.dexgen.util.ExceptionWithContext;
174 throw ExceptionWithContext.withContext(ex,
H A DDebugInfoItem.java27 import com.android.dexgen.util.ExceptionWithContext;
79 throw ExceptionWithContext.withContext(ex,
H A DCodeItem.java34 import com.android.dexgen.util.ExceptionWithContext;
303 throw ExceptionWithContext.withContext(ex, "...while writing " +
H A DMixedItemSection.java20 import com.android.dexgen.util.ExceptionWithContext;
321 throw ExceptionWithContext.withContext(ex,
/dalvik/dx/src/com/android/dx/dex/file/
H A DDexFile.java29 import com.android.dx.util.ExceptionWithContext;
548 throw ExceptionWithContext.withContext(ex,
568 throw new ExceptionWithContext("excess write of " +
574 ExceptionWithContext ec;
575 if (ex instanceof ExceptionWithContext) {
576 ec = (ExceptionWithContext) ex;
578 ec = new ExceptionWithContext(ex);
H A DOffsettedItem.java20 import com.android.dx.util.ExceptionWithContext;
174 throw ExceptionWithContext.withContext(ex,
H A DDebugInfoItem.java25 import com.android.dx.util.ExceptionWithContext;
77 throw ExceptionWithContext.withContext(ex,
H A DCodeItem.java34 import com.android.dx.util.ExceptionWithContext;
303 throw ExceptionWithContext.withContext(ex, "...while writing " +
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDalvInsnList.java22 import com.android.dexgen.util.ExceptionWithContext;
156 throw ExceptionWithContext.withContext(ex,
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvInsnList.java23 import com.android.dx.util.ExceptionWithContext;
157 throw ExceptionWithContext.withContext(ex,
/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java56 import com.android.dx.util.ExceptionWithContext;
90 throw ExceptionWithContext.withContext(ex, msg);
176 throw ExceptionWithContext.withContext(ex, msg);
344 throw ExceptionWithContext.withContext(ex, msg);

Completed in 320 milliseconds

12