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

  • SEARCH
  • Home
  • 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 7768141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:50:43+00:00 2026-06-01T15:50:43+00:00

I have an service application that reads a config file containing a list of

  • 0

I have an service application that reads a config file containing a list of files to open. The problem is when it doesn’t find the file in the directory, it throws an exception thus cancelling the thread and stopping the service application as well.

Here’s a code block of the function being called in a thread:

FILE* file_;
ServiceApp::File::File( const char* filename, const char* mode) :
file_(fopen(filename, mode))
{
    if( !file_ )
    {
    // throwing will stop the service when file doesn't exist, what work around could we do?
    throw std::runtime_error("file open failure");
}

Question:
How do we prevent this from happening so that when a file listed in the config file is not found in the directory, the application would just ignore it and continue with the process?

  • 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-06-01T15:50:44+00:00Added an answer on June 1, 2026 at 3:50 pm

    The easiest would be just to try-catch your own exception, in the thread, then check for it being that exception (to ignore it), and rethrowing if it’s some other exception.

    I’m not sure if it’s possible to add info to the exception where thrown or is it legacy code? In the latter case you’ll have to resort to string comparison, which of course is ugly. Anyway.

    // pseudo-code
    while(GotFilesInQueue())
    {
      try
      {
        LoadNextFile();
      }
      catch(std::exception& e)
      {
        if(!IgnoreExceptionPredicate(e))
        {
          throw;
        }
      }
    }
    

    On Rethrowing

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows service that reads from a config file. I need to
I have a service application that on startup reads an XML file and starts
I have an assembly that reads a configuration file which is in the application
I have a WCF service library that reads a xml file that's located in
I have a c# windows service application that is crashing without throwing an exception
enter code here Hi All, I have a simple windows service application that connects
I have a silverlight/RIA service application and in that, after I save the data
I have a Web Service and an Android application that uses this web service.
I have a WCF service and a Silverlight application that work just fine when
I have a legacy Windows server service and (spawned) application that works fine in

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.