public final class io.reactivex.internal.operators.maybe.MaybeErrorCallable<T> extends io.reactivex.Maybe<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.maybe.MaybeErrorCallable
  super_class: io.reactivex.Maybe
{
  final java.util.concurrent.Callable<? extends java.lang.Throwable> errorSupplier;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/Callable<+Ljava/lang/Throwable;>;

  public void <init>(java.util.concurrent.Callable<? extends java.lang.Throwable>);
    descriptor: (Ljava/util/concurrent/Callable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.maybe.MaybeErrorCallable this
        start local 1 // java.util.concurrent.Callable errorSupplier
         0: .line 32
            aload 0 /* this */
            invokespecial io.reactivex.Maybe.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 1 /* errorSupplier */
            putfield io.reactivex.internal.operators.maybe.MaybeErrorCallable.errorSupplier:Ljava/util/concurrent/Callable;
         2: .line 34
            return
        end local 1 // java.util.concurrent.Callable errorSupplier
        end local 0 // io.reactivex.internal.operators.maybe.MaybeErrorCallable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/reactivex/internal/operators/maybe/MaybeErrorCallable<TT;>;
            0    3     1  errorSupplier  Ljava/util/concurrent/Callable<+Ljava/lang/Throwable;>;
    Signature: (Ljava/util/concurrent/Callable<+Ljava/lang/Throwable;>;)V
    MethodParameters:
               Name  Flags
      errorSupplier  

  protected void subscribeActual(io.reactivex.MaybeObserver<? super T>);
    descriptor: (Lio/reactivex/MaybeObserver;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.maybe.MaybeErrorCallable this
        start local 1 // io.reactivex.MaybeObserver observer
         0: .line 38
            aload 1 /* observer */
            invokestatic io.reactivex.disposables.Disposables.disposed:()Lio/reactivex/disposables/Disposable;
            invokeinterface io.reactivex.MaybeObserver.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         1: .line 42
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeErrorCallable.errorSupplier:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            checkcast java.lang.Throwable
            ldc "Callable returned null throwable. Null values are generally not allowed in 2.x operators and sources."
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.Throwable
            astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         2: .line 43
            goto 6
        end local 2 // java.lang.Throwable ex
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 3 /* ex1 */
        start local 3 // java.lang.Throwable ex1
         4: .line 44
            aload 3 /* ex1 */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 45
            aload 3 /* ex1 */
            astore 2 /* ex */
        end local 3 // java.lang.Throwable ex1
        start local 2 // java.lang.Throwable ex
         6: .line 48
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 1 /* observer */
            aload 2 /* ex */
            invokeinterface io.reactivex.MaybeObserver.onError:(Ljava/lang/Throwable;)V
         7: .line 49
            return
        end local 2 // java.lang.Throwable ex
        end local 1 // io.reactivex.MaybeObserver observer
        end local 0 // io.reactivex.internal.operators.maybe.MaybeErrorCallable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/reactivex/internal/operators/maybe/MaybeErrorCallable<TT;>;
            0    8     1  observer  Lio/reactivex/MaybeObserver<-TT;>;
            2    3     2        ex  Ljava/lang/Throwable;
            6    8     2        ex  Ljava/lang/Throwable;
            4    6     3       ex1  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
    Signature: (Lio/reactivex/MaybeObserver<-TT;>;)V
    MethodParameters:
          Name  Flags
      observer  
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/Maybe<TT;>;
SourceFile: "MaybeErrorCallable.java"