Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 928175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:58:06+00:00 2026-05-15T19:58:06+00:00

This is an easy program to introduce the Reactive Framework . But I want

  • 0

This is an easy program to introduce the Reactive Framework. But I want to try the error handler, by modifying the program to be:

var cookiePieces = Observable.Range(1, 10);
cookiePieces.Subscribe(x =>
   {
      Console.WriteLine("{0}! {0} pieces of cookie!", x);
      throw new Exception();  // newly added by myself
   },
      ex => Console.WriteLine("the exception message..."),
      () => Console.WriteLine("Ah! Ah! Ah! Ah!"));
Console.ReadLine();

In this sample the follwing overload is used.

public static IDisposable Subscribe<TSource>(
     this IObservable<TSource> source, 
     Action<TSource> onNext, 
     Action<Exception> onError, 
     Action onCompleted);

I hoped I would see the exception message printed, but the console application crashed. What is the reason?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T19:58:06+00:00Added an answer on May 15, 2026 at 7:58 pm

    The exception handler is used for exceptions created in the observable itself, not by the observer.

    An easy way to provoke the exception handler is something like this:

    using System;
    using System.Linq;
    
    class Test
    {
        static void Main(string[] args)
        {
            var xs = Observable.Range(1, 10)
                               .Select(x => 10 / (5 - x));
    
            xs.Subscribe(x => Console.WriteLine("Received {0}", x),
                         ex => Console.WriteLine("Bang! {0}", ex),
                         () => Console.WriteLine("Done"));
    
            Console.WriteLine("App ending normally");
        }
    }
    

    Output:

    Received 2
    Received 3
    Received 5
    Received 10
    Bang! System.DivideByZeroException: Attempted to divide by zero.
       at Test.<Main>b__0(Int32 x)
       at System.Linq.Observable.<>c__DisplayClass35a`2.<>c__DisplayClass35c.<Select
    >b__359(TSource x)
    App ending normally
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this easy little form in my JavaFX application. I want to use
I just tried the tooltip like this Easy image preview ... But i cant
This supposedly easy task gave me some headache. I simply want to let the
I know this is easy but i m just not able to debug it.
I feel like this is easy but I am missing something... Using jQuery, I
I hope this is easy to spot. This query has a synatx error; public
I bet this is easy but been trying for a while and can't seem
I am sure this is easy - but I can't figure it out right
In theory this seems easy but I just can't get my head around this...
This may sound easy, but please, I am a newbie. I have a simple

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.