HomeSort by relevance Sort by last modified time
    Searched refs:Exception (Results 1 - 25 of 2860) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/sql/src/main/java/SQLite/
Exception.java 7 public class Exception extends java.lang.Exception {
10 * Construct a new SQLite exception.
15 public Exception(String string) {
Stmt.java 32 public native boolean prepare() throws SQLite.Exception;
60 * } catch (SQLite.Exception e) {
69 public native boolean step() throws SQLite.Exception;
75 public native void close() throws SQLite.Exception;
82 public native void reset() throws SQLite.Exception;
88 public native void clear_bindings() throws SQLite.Exception;
96 public native void bind(int pos, int value) throws SQLite.Exception;
104 public native void bind(int pos, long value) throws SQLite.Exception;
112 public native void bind(int pos, double value) throws SQLite.Exception;
120 public native void bind(int pos, byte[] value) throws SQLite.Exception;
    [all...]
Vm.java 38 * } catch (SQLite.Exception e) {
47 public native boolean step(Callback cb) throws SQLite.Exception;
55 public native boolean compile() throws SQLite.Exception;
61 public native void stop() throws SQLite.Exception;
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/data/
NormalException.java 19 import java.lang.Exception;
24 public class NormalException extends Exception {
  /dalvik/libcore/luni/src/main/java/java/lang/
Exception.java 22 * {@code Exception} is the superclass of all classes that represent recoverable
30 public class Exception extends Throwable {
34 * Constructs a new {@code Exception} that includes the current stack trace.
36 public Exception() {
41 * Constructs a new {@code Exception} with the current stack trace and the
45 * the detail message for this exception.
47 public Exception(String detailMessage) {
52 * Constructs a new {@code Exception} with the current stack trace, the
56 * the detail message for this exception.
58 * the cause of this exception
    [all...]
  /frameworks/base/core/java/android/util/
AndroidException.java 22 public class AndroidException extends Exception {
30 public AndroidException(Exception cause) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
StreamException.java 20 * Exception thrown when {@link IAbstractFile#getContents()} fails.
22 public class StreamException extends Exception {
25 public StreamException(Exception e) {
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RRuleTest.java 54 String golden) throws Exception {
59 String golden, String advanceTo, String tz) throws Exception {
74 * @throws Exception if anything goes wrong.
77 String golden, String advanceTo, String endAt, String tz) throws Exception {
133 public void testFrequencyLimits() throws Exception {
143 public void testSimpleDaily() throws Exception {
148 public void testSimpleWeekly() throws Exception {
153 public void testSimpleMonthly() throws Exception {
158 public void testSimpleYearly() throws Exception {
164 public void testMultipleByParts() throws Exception {
    [all...]
  /cts/tools/dasm/src/dasm/
DasmError.java 20 * Exception thrown if eny error detected while running Dasm.
22 public class DasmError extends Exception {
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Callable.java 10 * A task that returns a result and may throw an exception.
18 * throw a checked exception.
30 * Computes a result, or throws an exception if unable to do so.
33 * @throws Exception if unable to compute a result
35 V call() throws Exception;
  /dalvik/libcore/json/src/main/java/org/json/
JSONException.java 32 * <p>Although this is a checked exception, it is rarely recoverable. Most
33 * callers should simply wrap this exception in an unchecked exception and
44 public class JSONException extends Exception {
  /dalvik/libcore/security/src/main/java/java/security/
PrivilegedExceptionAction.java 36 * @throws Exception
37 * if an exception occurred.
39 T run() throws Exception;
  /dalvik/libcore/security/src/main/java/java/security/acl/
AclNotFoundException.java 21 * The exception, that is thrown when a reference to a non-existent <i>Access
24 public class AclNotFoundException extends Exception {
LastOwnerException.java 21 * The exception that is thrown when an attempt is made to remove the
26 public class LastOwnerException extends Exception {
NotOwnerException.java 21 * The exception that is thrown when an action that requires ownership is
28 public class NotOwnerException extends Exception {
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
AnnotatedException.java 4 extends Exception
6 private Exception _underlyingException;
10 Exception e)
23 Exception getUnderlyingException()
  /dalvik/libcore/support/src/test/java/tests/support/
Support_Proxy_ParentException.java 20 public class Support_Proxy_ParentException extends Exception {
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
WrappedRuntimeException.java 39 /** Primary checked exception.
41 private Exception m_exception;
45 * checked exception.
47 * @param e Primary checked exception
49 public WrappedRuntimeException(Exception e)
61 * @param msg Exception information.
62 * @param e Primary checked exception
64 public WrappedRuntimeException(String msg, Exception e)
73 * Get the checked exception that this runtime exception wraps
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
WrappedRuntimeException.java 32 /** Primary checked exception.
34 private Exception m_exception;
38 * checked exception.
40 * @param e Primary checked exception
42 public WrappedRuntimeException(Exception e)
54 * @param msg Exception information.
55 * @param e Primary checked exception
57 public WrappedRuntimeException(String msg, Exception e)
66 * Get the checked exception that this runtime exception wraps
    [all...]
  /development/testrunner/
errors.py 18 """Defines common exception classes for this package."""
21 class MsgException(Exception):
22 """Generic exception with an optional string msg."""
27 class WaitForResponseTimedOutError(Exception):
31 class DeviceUnresponsiveError(Exception):
35 class InstrumentationError(Exception):
40 """Generic exception that indicates a fatal error has occurred and program
  /external/proguard/src/proguard/
ParseException.java 25 * This <code>Exception</code> signals that a parse exception of some
30 public class ParseException extends Exception {
  /packages/apps/Camera/src/com/android/camera/ui/
GLOutOfMemoryException.java 19 public class GLOutOfMemoryException extends Exception {
  /packages/apps/Email/src/com/android/exchange/
EasException.java 20 public class EasException extends Exception {
  /cts/tools/dx-tests/src/dxc/junit/verify/t482_10/jm/
T_t482_10_1.java 30 throw new Exception();
32 }catch(Exception e){
  /development/tools/mkstubs/tests/com/android/mkstubs/
FilterClassAdapterTest.java 26 public void setUp() throws Exception {
30 public void tearDown() throws Exception {

Completed in 1483 milliseconds

1 2 3 4 5 6 7 8 91011>>