OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Throwable
(Results
1 - 13
of
13
) sorted by null
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_2.java
21
public void run() throws
Throwable
{
22
throw new
Throwable
();
/art/runtime/mirror/
throwable.h
29
// C++ mirror of java.lang.
Throwable
30
class MANAGED
Throwable
: public Object {
33
SetFieldObject(OFFSET_OF_OBJECT_MEMBER(
Throwable
, detail_message_), new_detail_message, false);
36
return GetFieldObject<String*>(OFFSET_OF_OBJECT_MEMBER(
Throwable
, detail_message_), false);
43
void SetCause(
Throwable
* cause) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
56
return GetFieldObject<Object*>(OFFSET_OF_OBJECT_MEMBER(
Throwable
, stack_state_), true);
60
Throwable
* cause_;
69
DISALLOW_IMPLICIT_CONSTRUCTORS(
Throwable
);
/libcore/luni/src/main/java/java/lang/
Throwable.java
35
* circumstances in which the {@code
Throwable
} was created (basically an error
39
* <p>A {@code
Throwable
} can also include a cause, which is a nested {@code
40
*
Throwable
} that represents the original problem that led to this {@code
41
*
Throwable
}. It is often used for wrapping various types of errors into a
42
* common {@code
Throwable
} without losing the detailed original error
50
public class
Throwable
implements java.io.Serializable {
59
* The cause of this
Throwable
. Null when there is no cause.
61
private
Throwable
cause = this;
64
* Throwables suppressed by this
throwable
. Null when suppressed exceptions
67
private List<
Throwable
> suppressedExceptions = Collections.emptyList()
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 147 milliseconds