Searched defs:ExceptionWithContext (Results 1 - 2 of 2) sorted by relevance

/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...]
/dalvik/dx/src/com/android/dex/util/
H A DExceptionWithContext.java25 public class ExceptionWithContext extends RuntimeException { class in inherits:RuntimeException
32 * {@link ExceptionWithContext}, or a newly-constructed exception if it
39 public static ExceptionWithContext withContext(Throwable ex, String str) {
40 ExceptionWithContext ewc;
42 if (ex instanceof ExceptionWithContext) {
43 ewc = (ExceptionWithContext) ex;
45 ewc = new ExceptionWithContext(ex);
57 public ExceptionWithContext(String message) { method in class:ExceptionWithContext
66 public ExceptionWithContext(Throwable cause) { method in class:ExceptionWithContext
76 public ExceptionWithContext(Strin method in class:ExceptionWithContext
[all...]

Completed in 183 milliseconds