public final class io.reactivex.exceptions.CompositeException extends java.lang.RuntimeException
minor version: 0
major version: 59
flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
this_class: io.reactivex.exceptions.CompositeException
super_class: java.lang.RuntimeException
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 3026362227162912146
private final java.util.List<java.lang.Throwable> exceptions;
descriptor: Ljava/util/List;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Ljava/util/List<Ljava/lang/Throwable;>;
private final java.lang.String message;
descriptor: Ljava/lang/String;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private java.lang.Throwable cause;
descriptor: Ljava/lang/Throwable;
flags: (0x0002) ACC_PRIVATE
public void <init>(java.lang.Throwable[]);
descriptor: ([Ljava/lang/Throwable;)V
flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "exceptions was null"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
goto 3
StackMap locals:
StackMap stack: uninitialized-this
2: aload 1
invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
StackMap locals: uninitialized-this java.lang.Throwable[]
StackMap stack: uninitialized-this java.util.List
3: invokespecial io.reactivex.exceptions.CompositeException.<init>:(Ljava/lang/Iterable;)V
4: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/reactivex/exceptions/CompositeException;
0 5 1 exceptions [Ljava/lang/Throwable;
RuntimeInvisibleParameterAnnotations:
0:
io.reactivex.annotations.NonNull()
MethodParameters:
Name Flags
exceptions
public void <init>(java.lang.Iterable<? extends java.lang.Throwable>);
descriptor: (Ljava/lang/Iterable;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=6, args_size=2
start local 0 start local 1 0: aload 0
invokespecial java.lang.RuntimeException.<init>:()V
1: new java.util.LinkedHashSet
dup
invokespecial java.util.LinkedHashSet.<init>:()V
astore 2
start local 2 2: new java.util.ArrayList
dup
invokespecial java.util.ArrayList.<init>:()V
astore 3
start local 3 3: aload 1
ifnull 15
4: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 5
goto 13
StackMap locals: io.reactivex.exceptions.CompositeException java.lang.Iterable java.util.Set java.util.List top java.util.Iterator
StackMap stack:
5: aload 5
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Throwable
astore 4
start local 4 6: aload 4
instanceof io.reactivex.exceptions.CompositeException
ifeq 9
7: aload 2
aload 4
checkcast io.reactivex.exceptions.CompositeException
invokevirtual io.reactivex.exceptions.CompositeException.getExceptions:()Ljava/util/List;
invokeinterface java.util.Set.addAll:(Ljava/util/Collection;)Z
pop
8: goto 13
9: StackMap locals: io.reactivex.exceptions.CompositeException java.lang.Iterable java.util.Set java.util.List java.lang.Throwable java.util.Iterator
StackMap stack:
aload 4
ifnull 12
10: aload 2
aload 4
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
11: goto 13
12: StackMap locals:
StackMap stack:
aload 2
new java.lang.NullPointerException
dup
ldc "Throwable was null!"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
end local 4 13: StackMap locals: io.reactivex.exceptions.CompositeException java.lang.Iterable java.util.Set java.util.List top java.util.Iterator
StackMap stack:
aload 5
invokeinterface java.util.Iterator.hasNext:()Z
ifne 5
14: goto 16
15: StackMap locals: io.reactivex.exceptions.CompositeException java.lang.Iterable java.util.Set java.util.List
StackMap stack:
aload 2
new java.lang.NullPointerException
dup
ldc "errors was null"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
16: StackMap locals:
StackMap stack:
aload 2
invokeinterface java.util.Set.isEmpty:()Z
ifeq 18
17: new java.lang.IllegalArgumentException
dup
ldc "errors is empty"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
18: StackMap locals:
StackMap stack:
aload 3
aload 2
invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
pop
19: aload 0
aload 3
invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
putfield io.reactivex.exceptions.CompositeException.exceptions:Ljava/util/List;
20: aload 0
new java.lang.StringBuilder
dup
aload 0
getfield io.reactivex.exceptions.CompositeException.exceptions:Ljava/util/List;
invokeinterface java.util.List.size:()I
invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc " exceptions occurred. "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
putfield io.reactivex.exceptions.CompositeException.message:Ljava/lang/String;
21: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 22 0 this Lio/reactivex/exceptions/CompositeException;
0 22 1 errors Ljava/lang/Iterable<+Ljava/lang/Throwable;>;
2 22 2 deDupedExceptions Ljava/util/Set<Ljava/lang/Throwable;>;
3 22 3 localExceptions Ljava/util/List<Ljava/lang/Throwable;>;
6 13 4 ex Ljava/lang/Throwable;
Signature: (Ljava/lang/Iterable<+Ljava/lang/Throwable;>;)V
RuntimeInvisibleParameterAnnotations:
0:
io.reactivex.annotations.NonNull()
MethodParameters:
Name Flags
errors
public java.util.List<java.lang.Throwable> getExceptions();
descriptor: ()Ljava/util/List;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.reactivex.exceptions.CompositeException.exceptions:Ljava/util/List;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/reactivex/exceptions/CompositeException;
Signature: ()Ljava/util/List<Ljava/lang/Throwable;>;
RuntimeInvisibleAnnotations:
io.reactivex.annotations.NonNull()
public java.lang.String getMessage();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.reactivex.exceptions.CompositeException.message:Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/reactivex/exceptions/CompositeException;
RuntimeInvisibleAnnotations:
io.reactivex.annotations.NonNull()
public synchronized java.lang.Throwable getCause();
descriptor: ()Ljava/lang/Throwable;
flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
Code:
stack=3, locals=9, args_size=1
start local 0 0: aload 0
getfield io.reactivex.exceptions.CompositeException.cause:Ljava/lang/Throwable;
ifnonnull 23
1: new io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain
dup
invokespecial io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain.<init>:()V
astore 1
start local 1 2: new java.util.HashSet
dup
invokespecial java.util.HashSet.<init>:()V
astore 2
start local 2 3: aload 1
astore 3
start local 3 4: aload 0
getfield io.reactivex.exceptions.CompositeException.exceptions:Ljava/util/List;
invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
astore 5
goto 21
StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable top java.util.Iterator
StackMap stack:
5: aload 5
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Throwable
astore 4
start local 4 6: aload 2
aload 4
invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
ifeq 8
7: goto 21
8: StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable java.lang.Throwable java.util.Iterator
StackMap stack:
aload 2
aload 4
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
9: aload 0
aload 4
invokevirtual io.reactivex.exceptions.CompositeException.getListOfCauses:(Ljava/lang/Throwable;)Ljava/util/List;
astore 6
start local 6 10: aload 6
invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
astore 8
goto 16
StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable java.lang.Throwable java.util.Iterator java.util.List top java.util.Iterator
StackMap stack:
11: aload 8
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Throwable
astore 7
start local 7 12: aload 2
aload 7
invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
ifeq 15
13: new java.lang.RuntimeException
dup
ldc "Duplicate found in causal chain so cropping to prevent loop ..."
invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
astore 4
14: goto 16
15: StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable java.lang.Throwable java.util.Iterator java.util.List java.lang.Throwable java.util.Iterator
StackMap stack:
aload 2
aload 7
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
end local 7 16: StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable java.lang.Throwable java.util.Iterator java.util.List top java.util.Iterator
StackMap stack:
aload 8
invokeinterface java.util.Iterator.hasNext:()Z
ifne 11
17: aload 3
aload 4
invokevirtual java.lang.Throwable.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
pop
18: goto 20
StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable java.lang.Throwable java.util.Iterator java.util.List
StackMap stack: java.lang.Throwable
19: pop
20: StackMap locals:
StackMap stack:
aload 0
aload 3
invokevirtual io.reactivex.exceptions.CompositeException.getRootCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
astore 3
end local 6 end local 4 21: StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain java.util.Set java.lang.Throwable top java.util.Iterator
StackMap stack:
aload 5
invokeinterface java.util.Iterator.hasNext:()Z
ifne 5
22: aload 0
aload 1
putfield io.reactivex.exceptions.CompositeException.cause:Ljava/lang/Throwable;
end local 3 end local 2 end local 1 23: StackMap locals: io.reactivex.exceptions.CompositeException
StackMap stack:
aload 0
getfield io.reactivex.exceptions.CompositeException.cause:Ljava/lang/Throwable;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 24 0 this Lio/reactivex/exceptions/CompositeException;
2 23 1 localCause Lio/reactivex/exceptions/CompositeException$CompositeExceptionCausalChain;
3 23 2 seenCauses Ljava/util/Set<Ljava/lang/Throwable;>;
4 23 3 chain Ljava/lang/Throwable;
6 21 4 e Ljava/lang/Throwable;
10 21 6 listOfCauses Ljava/util/List<Ljava/lang/Throwable;>;
12 16 7 child Ljava/lang/Throwable;
Exception table:
from to target type
17 18 19 Class java.lang.Throwable
RuntimeInvisibleAnnotations:
io.reactivex.annotations.NonNull()
public void printStackTrace();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getstatic java.lang.System.err:Ljava/io/PrintStream;
invokevirtual io.reactivex.exceptions.CompositeException.printStackTrace:(Ljava/io/PrintStream;)V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/reactivex/exceptions/CompositeException;
public void printStackTrace(java.io.PrintStream);
descriptor: (Ljava/io/PrintStream;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
new io.reactivex.exceptions.CompositeException$WrappedPrintStream
dup
aload 1
invokespecial io.reactivex.exceptions.CompositeException$WrappedPrintStream.<init>:(Ljava/io/PrintStream;)V
invokevirtual io.reactivex.exceptions.CompositeException.printStackTrace:(Lio/reactivex/exceptions/CompositeException$PrintStreamOrWriter;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/reactivex/exceptions/CompositeException;
0 2 1 s Ljava/io/PrintStream;
MethodParameters:
Name Flags
s
public void printStackTrace(java.io.PrintWriter);
descriptor: (Ljava/io/PrintWriter;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
new io.reactivex.exceptions.CompositeException$WrappedPrintWriter
dup
aload 1
invokespecial io.reactivex.exceptions.CompositeException$WrappedPrintWriter.<init>:(Ljava/io/PrintWriter;)V
invokevirtual io.reactivex.exceptions.CompositeException.printStackTrace:(Lio/reactivex/exceptions/CompositeException$PrintStreamOrWriter;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/reactivex/exceptions/CompositeException;
0 2 1 s Ljava/io/PrintWriter;
MethodParameters:
Name Flags
s
private void printStackTrace(io.reactivex.exceptions.CompositeException$PrintStreamOrWriter);
descriptor: (Lio/reactivex/exceptions/CompositeException$PrintStreamOrWriter;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=7, args_size=2
start local 0 start local 1 0: new java.lang.StringBuilder
dup
sipush 128
invokespecial java.lang.StringBuilder.<init>:(I)V
astore 2
start local 2 1: aload 2
aload 0
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
bipush 10
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
2: aload 0
invokevirtual io.reactivex.exceptions.CompositeException.getStackTrace:()[Ljava/lang/StackTraceElement;
dup
astore 6
arraylength
istore 5
iconst_0
istore 4
goto 6
StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$PrintStreamOrWriter java.lang.StringBuilder top int int java.lang.StackTraceElement[]
StackMap stack:
3: aload 6
iload 4
aaload
astore 3
start local 3 4: aload 2
ldc "\tat "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 3
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
bipush 10
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
end local 3 5: iinc 4 1
StackMap locals:
StackMap stack:
6: iload 4
iload 5
if_icmplt 3
7: iconst_1
istore 3
start local 3 8: aload 0
getfield io.reactivex.exceptions.CompositeException.exceptions:Ljava/util/List;
invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
astore 5
goto 13
StackMap locals: io.reactivex.exceptions.CompositeException io.reactivex.exceptions.CompositeException$PrintStreamOrWriter java.lang.StringBuilder int top java.util.Iterator
StackMap stack:
9: aload 5
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Throwable
astore 4
start local 4 10: aload 2
ldc " ComposedException "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
iload 3
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " :\n"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
11: aload 0
aload 2
aload 4
ldc "\t"
invokevirtual io.reactivex.exceptions.CompositeException.appendStackTrace:(Ljava/lang/StringBuilder;Ljava/lang/Throwable;Ljava/lang/String;)V
12: iinc 3 1
end local 4 13: StackMap locals:
StackMap stack:
aload 5
invokeinterface java.util.Iterator.hasNext:()Z
ifne 9
14: aload 1
aload 2
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokevirtual io.reactivex.exceptions.CompositeException$PrintStreamOrWriter.println:(Ljava/lang/Object;)V
15: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lio/reactivex/exceptions/CompositeException;
0 16 1 s Lio/reactivex/exceptions/CompositeException$PrintStreamOrWriter;
1 16 2 b Ljava/lang/StringBuilder;
4 5 3 myStackElement Ljava/lang/StackTraceElement;
8 16 3 i I
10 13 4 ex Ljava/lang/Throwable;
MethodParameters:
Name Flags
s
private void appendStackTrace(java.lang.StringBuilder, java.lang.Throwable, java.lang.String);
descriptor: (Ljava/lang/StringBuilder;Ljava/lang/Throwable;Ljava/lang/String;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=8, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 1
aload 3
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 2
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
bipush 10
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
1: aload 2
invokevirtual java.lang.Throwable.getStackTrace:()[Ljava/lang/StackTraceElement;
dup
astore 7
arraylength
istore 6
iconst_0
istore 5
goto 5
StackMap locals: io.reactivex.exceptions.CompositeException java.lang.StringBuilder java.lang.Throwable java.lang.String top int int java.lang.StackTraceElement[]
StackMap stack:
2: aload 7
iload 5
aaload
astore 4
start local 4 3: aload 1
ldc "\t\tat "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 4
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
bipush 10
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
end local 4 4: iinc 5 1
StackMap locals:
StackMap stack:
5: iload 5
iload 6
if_icmplt 2
6: aload 2
invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
ifnull 9
7: aload 1
ldc "\tCaused by: "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
8: aload 0
aload 1
aload 2
invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
ldc ""
invokevirtual io.reactivex.exceptions.CompositeException.appendStackTrace:(Ljava/lang/StringBuilder;Ljava/lang/Throwable;Ljava/lang/String;)V
9: StackMap locals: io.reactivex.exceptions.CompositeException java.lang.StringBuilder java.lang.Throwable java.lang.String
StackMap stack:
return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lio/reactivex/exceptions/CompositeException;
0 10 1 b Ljava/lang/StringBuilder;
0 10 2 ex Ljava/lang/Throwable;
0 10 3 prefix Ljava/lang/String;
3 4 4 stackElement Ljava/lang/StackTraceElement;
MethodParameters:
Name Flags
b
ex
prefix
private java.util.List<java.lang.Throwable> getListOfCauses(java.lang.Throwable);
descriptor: (Ljava/lang/Throwable;)Ljava/util/List;
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=5, args_size=2
start local 0 start local 1 0: new java.util.ArrayList
dup
invokespecial java.util.ArrayList.<init>:()V
astore 2
start local 2 1: aload 1
invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
astore 3
start local 3 2: aload 3
ifnull 3
aload 3
aload 1
if_acmpne 4
3: StackMap locals: java.util.List java.lang.Throwable
StackMap stack:
aload 2
areturn
4: StackMap locals:
StackMap stack:
aload 2
aload 3
invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
pop
5: aload 3
invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
astore 4
start local 4 6: aload 4
ifnull 7
aload 4
aload 3
if_acmpne 8
7: StackMap locals: java.lang.Throwable
StackMap stack:
aload 2
areturn
8: StackMap locals:
StackMap stack:
aload 4
astore 3
end local 4 9: goto 4
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lio/reactivex/exceptions/CompositeException;
0 10 1 ex Ljava/lang/Throwable;
1 10 2 list Ljava/util/List<Ljava/lang/Throwable;>;
2 10 3 root Ljava/lang/Throwable;
6 9 4 cause Ljava/lang/Throwable;
Signature: (Ljava/lang/Throwable;)Ljava/util/List<Ljava/lang/Throwable;>;
MethodParameters:
Name Flags
ex
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.reactivex.exceptions.CompositeException.exceptions:Ljava/util/List;
invokeinterface java.util.List.size:()I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/reactivex/exceptions/CompositeException;
java.lang.Throwable getRootCause(java.lang.Throwable);
descriptor: (Ljava/lang/Throwable;)Ljava/lang/Throwable;
flags: (0x0000)
Code:
stack=2, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
astore 2
start local 2 1: aload 2
ifnull 2
aload 1
aload 2
if_acmpne 3
2: StackMap locals: java.lang.Throwable
StackMap stack:
aload 1
areturn
3: StackMap locals:
StackMap stack:
aload 2
invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
astore 3
start local 3 4: aload 3
ifnull 5
aload 3
aload 2
if_acmpne 6
5: StackMap locals: java.lang.Throwable
StackMap stack:
aload 2
areturn
6: StackMap locals:
StackMap stack:
aload 3
astore 2
end local 3 7: goto 3
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lio/reactivex/exceptions/CompositeException;
0 8 1 e Ljava/lang/Throwable;
1 8 2 root Ljava/lang/Throwable;
4 7 3 cause Ljava/lang/Throwable;
MethodParameters:
Name Flags
e
}
SourceFile: "CompositeException.java"
NestMembers:
io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain io.reactivex.exceptions.CompositeException$PrintStreamOrWriter io.reactivex.exceptions.CompositeException$WrappedPrintStream io.reactivex.exceptions.CompositeException$WrappedPrintWriter
InnerClasses:
final CompositeExceptionCausalChain = io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain of io.reactivex.exceptions.CompositeException
abstract PrintStreamOrWriter = io.reactivex.exceptions.CompositeException$PrintStreamOrWriter of io.reactivex.exceptions.CompositeException
final WrappedPrintStream = io.reactivex.exceptions.CompositeException$WrappedPrintStream of io.reactivex.exceptions.CompositeException
final WrappedPrintWriter = io.reactivex.exceptions.CompositeException$WrappedPrintWriter of io.reactivex.exceptions.CompositeException