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

/external/dexmaker/src/dx/java/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...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DExceptionWithContext.java33 public class ExceptionWithContext class in inherits:RuntimeException
41 * {@link ExceptionWithContext}, or a newly-constructed exception if it
48 public static ExceptionWithContext withContext(Throwable ex, String str) {
49 ExceptionWithContext ewc;
51 if (ex instanceof ExceptionWithContext) {
52 ewc = (ExceptionWithContext) ex;
54 ewc = new ExceptionWithContext(ex);
66 public ExceptionWithContext(String message) { method in class:ExceptionWithContext
75 public ExceptionWithContext(Throwable cause) { method in class:ExceptionWithContext
85 public ExceptionWithContext(Strin method in class:ExceptionWithContext
[all...]

Completed in 115 milliseconds