Searched refs:RuntimeException (Results 26 - 50 of 866) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
H A DMojoException.java10 public class MojoException extends RuntimeException {
/external/easymock/src/org/easymock/internal/
H A DAssertionErrorWrapper.java18 public class AssertionErrorWrapper extends RuntimeException {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssertionFailedException.java20 public final class AssertionFailedException extends RuntimeException {
/external/guava/guava/src/com/google/common/collect/
H A DComputationException.java28 public class ComputationException extends RuntimeException {
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DRuntimeIOException.java21 public class RuntimeIOException extends RuntimeException
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverException.java22 public abstract class JSilverException extends RuntimeException {
/external/mockito/src/org/mockito/internal/exceptions/
H A DExceptionIncludingMockitoWarnings.java7 public class ExceptionIncludingMockitoWarnings extends RuntimeException {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DCastUtils.java23 * a RuntimeException if the cast would cause a loss of information.
30 throw new RuntimeException("A cast to int has gone wrong. Please contact the mp4parser discussion group (" + l + ")");
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
H A DSSLContextSpiTests.java54 fail("RuntimeException must be thrown");
55 } catch (RuntimeException e) {
60 fail("RuntimeException must be thrown");
61 } catch (RuntimeException e) {
66 fail("RuntimeException must be thrown");
67 } catch (RuntimeException e) {
72 fail("RuntimeException must be thrown");
73 } catch (RuntimeException e) {
78 fail("RuntimeException must be thrown");
79 } catch (RuntimeException
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFragSelectWrapper.java88 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, null)); //"detach() not supported by XRTreeFragSelectWrapper!");
100 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, null)); //"num() not supported by XRTreeFragSelectWrapper!");
111 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, null)); //"xstr() not supported by XRTreeFragSelectWrapper!");
121 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, null)); //"str() not supported by XRTreeFragSelectWrapper!");
141 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, null)); //"rtf() not supported by XRTreeFragSelectWrapper!");
151 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, null)); //"asNodeIterator() not supported by XRTreeFragSelectWrapper!");
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFileUtils.java36 * {@link RuntimeException} of some sort.
48 * {@link RuntimeException} of some sort.
55 throw new RuntimeException(file + ": file not found");
59 throw new RuntimeException(file + ": not a file");
63 throw new RuntimeException(file + ": file not readable");
69 throw new RuntimeException(file + ": file too long");
80 throw new RuntimeException(file + ": unexpected EOF");
87 throw new RuntimeException(file + ": trouble reading", ex);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DClusterException.java62 final class ClusterException extends RuntimeException {
78 public static RuntimeException create(Throwable... exceptions) {
87 * Given a collection of exceptions, returns a {@link RuntimeException}, with
92 * {@link RuntimeException}, return it
94 * <em>not</em> a {@link RuntimeException}, return a simple
95 * {@code RuntimeException} that wraps it
107 public static RuntimeException create(Collection<? extends Throwable> exceptions) {
114 if (temp instanceof RuntimeException) {
115 return (RuntimeException)temp;
117 return new RuntimeException(tem
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstrainedMapImplementsMapTest.java61 } catch (RuntimeException tolerated) {
69 } catch (RuntimeException tolerated) {
77 } catch (RuntimeException tolerated) {
85 } catch (RuntimeException tolerated) {
93 } catch (RuntimeException tolerated) {
101 } catch (RuntimeException tolerated) {
H A DForMapMultimapAsMapImplementsMapTest.java55 } catch (RuntimeException tolerated) {
63 } catch (RuntimeException tolerated) {
71 } catch (RuntimeException tolerated) {
79 } catch (RuntimeException tolerated) {
87 } catch (RuntimeException tolerated) {
95 } catch (RuntimeException tolerated) {
H A DSubMapMultimapAsMapImplementsMapTest.java73 } catch (RuntimeException tolerated) {
81 } catch (RuntimeException tolerated) {
89 } catch (RuntimeException tolerated) {
97 } catch (RuntimeException tolerated) {
105 } catch (RuntimeException tolerated) {
113 } catch (RuntimeException tolerated) {
H A DForwardingSortedMapImplementsMapTest.java97 } catch (RuntimeException tolerated) {
105 } catch (RuntimeException tolerated) {
113 } catch (RuntimeException tolerated) {
121 } catch (RuntimeException tolerated) {
129 } catch (RuntimeException tolerated) {
137 } catch (RuntimeException tolerated) {
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DFormOptions.java108 throw new RuntimeException("regionCode cannot be null.");
155 throw new RuntimeException("baseId cannot be null.");
163 throw new RuntimeException("AddressField field cannot be null.");
174 throw new RuntimeException("AddressField field cannot be null.");
185 throw new RuntimeException("AddressField field cannot be null.");
196 throw new RuntimeException("AddressField field cannot be null.");
199 throw new RuntimeException("Label cannot be null.");
236 throw new RuntimeException("regionCode cannot be null.");
239 throw new RuntimeException("Fields cannot be null.");
242 throw new RuntimeException("Ther
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteStatement.java29 throw new RuntimeException(e);
42 throw new RuntimeException("Could not retrive generatedKeys");
45 throw new RuntimeException(e);
58 throw new RuntimeException(e);
71 throw new RuntimeException(e);
H A DShadowResultReceiver.java25 throw new RuntimeException(e);
27 throw new RuntimeException(e);
29 throw new RuntimeException(e);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DSection.java109 throw new RuntimeException("fileOffset not set");
130 throw new RuntimeException("fileOffset already set");
155 throw new RuntimeException("alignment mismatch: for " + this +
186 throw new RuntimeException("fileOffset not yet set");
244 throw new RuntimeException("not prepared");
254 throw new RuntimeException("already prepared");
/external/hamcrest/src/org/hamcrest/
H A DStringDescription.java42 throw new RuntimeException("Could not write description", e);
50 throw new RuntimeException("Could not write description", e);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANoopCommand.java37 throw new RuntimeException("Not a child.");
44 throw new RuntimeException("Not a child.");
H A DANoopExpression.java37 throw new RuntimeException("Not a child.");
44 throw new RuntimeException("Not a child.");
H A DToken.java51 throw new RuntimeException("Not a child.");
57 throw new RuntimeException("Not a child.");
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldSetter.java25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
27 throw new RuntimeException("Wrong argument on field '" + field + "' of object '" + target + "' with value: '" + value + "', \n" +

Completed in 792 milliseconds

1234567891011>>