Searched refs:Exception (Results 1 - 25 of 1799) sorted by relevance

1234567891011>>

/external/javasqlite/src/main/java/SQLite/
H A DException.java7 public class Exception extends java.lang.Exception { class in inherits:java.lang.Exception
15 public Exception(String string) { method in class:Exception
H A DBackup.java19 protected void finish() throws SQLite.Exception {
33 } catch (SQLite.Exception e) {
38 protected native void _finalize() throws SQLite.Exception;
47 public boolean step(int n) throws SQLite.Exception {
53 private native boolean _step(int n) throws SQLite.Exception;
59 public void backup() throws SQLite.Exception {
69 public int remaining() throws SQLite.Exception {
75 private native int _remaining() throws SQLite.Exception;
81 public int pagecount() throws SQLite.Exception {
87 private native int _pagecount() throws SQLite.Exception;
[all...]
H A DStmt.java32 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...]
H A DVm.java38 * } 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;
/external/clang/test/SemaTemplate/
H A Dinstantiate-try-catch.cpp19 struct Exception { struct in class:PR10232::Templated
21 Exception(const Exception&); // expected-note{{declared private here}}
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DInvalidPositionException.java12 public class InvalidPositionException extends Exception{
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Jetty.java59 } catch (Exception e) {
98 public static int startDefaultHttpServer() throws Exception{
114 public static int startDefaultServlet() throws Exception{
129 public static int startHttpServerWithDocRoot(String root) throws Exception {
146 private static void stopDefaultServer() throws Exception {
155 private static void stopServer() throws Exception {
164 private static void stopDefaultServlet() throws Exception {
H A DSupport_Proxy_ParentException.java20 public class Support_Proxy_ParentException extends Exception {
/external/javassist/sample/evolve/
H A DCannotUpdateException.java6 public class CannotUpdateException extends Exception {
11 public CannotUpdateException(Exception e) {
/external/javassist/src/main/javassist/tools/reflect/
H A DCannotCreateException.java21 public class CannotCreateException extends Exception {
26 public CannotCreateException(Exception e) {
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DInvalidInputException.java30 public class InvalidInputException extends Exception {
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DEarlyExitException.pm6 use base qw( ANTLR::Runtime::Exception );
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DWrappedRuntimeException.java41 private Exception m_exception;
49 public WrappedRuntimeException(Exception e)
61 * @param msg Exception information.
64 public WrappedRuntimeException(String msg, Exception e)
77 public Exception getException()
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DWrappedRuntimeException.java34 private Exception m_exception;
42 public WrappedRuntimeException(Exception e)
54 * @param msg Exception information.
57 public WrappedRuntimeException(String msg, Exception e)
70 public Exception getException()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSException.java4 extends Exception
6 Exception e;
16 Exception e)
23 public Exception getUnderlyingException()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
H A DNegotiateException.java13 public class NegotiateException extends Exception
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DCallable.java25 V call() throws Exception;
/external/junit/src/org/junit/runner/manipulation/
H A DNoTestsRemainException.java6 public class NoTestsRemainException extends Exception {
/external/proguard/src/proguard/
H A DParseException.java25 * This <code>Exception</code> signals that a parse exception of some
30 public class ParseException extends Exception {
/external/clang/test/SemaCXX/
H A D__try.cpp16 class Exception class
19 Exception(const char* s = "Unknown"){what = strdup(s); } function in class:Exception
20 Exception(const Exception& e ){what = strdup(e.what); } function in class:Exception
21 ~Exception() {free(what); }
45 throw(Exception("Hardware error: Divide by 0"));
48 catch(const Exception& e)
50 printf("Caught C++ Exception: %s :\n", e.msg());
/external/junit/src/org/junit/runner/notification/
H A DRunListener.java40 public void testRunStarted(Description description) throws Exception {
47 public void testRunFinished(Result result) throws Exception {
55 public void testStarted(Description description) throws Exception {
62 public void testFinished(Description description) throws Exception {
69 public void testFailure(Failure failure) throws Exception {
89 public void testIgnored(Description description) throws Exception {
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DDuplicateDirectByteBufferTest.java22 protected void setUp() throws Exception {
28 protected void tearDown() throws Exception {
H A DDuplicateHeapByteBufferTest.java22 protected void setUp() throws Exception {
28 protected void tearDown() throws Exception {
H A DDuplicateWrappedByteBufferTest.java22 protected void setUp() throws Exception {
28 protected void tearDown() throws Exception {
/external/javassist/src/main/javassist/
H A DNotFoundException.java21 public class NotFoundException extends Exception {
26 public NotFoundException(String msg, Exception e) {

Completed in 434 milliseconds

1234567891011>>