Searched refs:exceptionType (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java118 * @param exceptionType {@code non-null;} type of exception handled
121 public void set(int n, CstType exceptionType, int handler) { argument
122 set0(n, new Entry(exceptionType, handler));
169 private final CstType exceptionType; field in class:CatchHandlerList.Entry
177 * @param exceptionType {@code non-null;} type of exception handled
180 public Entry(CstType exceptionType, int handler) { argument
185 if (exceptionType == null) {
186 throw new NullPointerException("exceptionType == null");
190 this.exceptionType = exceptionType;
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java118 * @param exceptionType {@code non-null;} type of exception handled
121 public void set(int n, CstType exceptionType, int handler) { argument
122 set0(n, new Entry(exceptionType, handler));
169 private final CstType exceptionType; field in class:CatchHandlerList.Entry
177 * @param exceptionType {@code non-null;} type of exception handled
180 public Entry(CstType exceptionType, int handler) { argument
185 if (exceptionType == null) {
186 throw new NullPointerException("exceptionType == null");
190 this.exceptionType = exceptionType;
[all...]

Completed in 131 milliseconds