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 3236504
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:37:47+00:00 2026-05-17T17:37:47+00:00

I come to an API getStock designed, where I have no good judgment, on

  • 0

I come to an API getStock designed, where I have no good judgment, on how I should deal with failure of operation.

The API will enable me to pass a stock code, and return a stock if success.

Shall I use null returned value to indicate failure of operation, or throwing checked exception to indicate failure of operation? Or possible Null Object Pattern? Why?


Null Returned Value

// User force to check the returned value each time.
// This happen when, stock server is down, network is down, 
// stockCode is not valid...
Stock stock = stockServer.getStock(stockCode);
if (stock != null) {
    // Success.
}

Checked Exception

try {
    // User force to catch the exception each time.
    // This happen when, stock server is down, network is down,
    // stockCode is not valid...
    Stock stock = stockServer.getStock(stockCode);
    // Success.
} catch (StockNotFoundException ex) {
}

Null Object Pattern

Stock stock = stockServer.getStock(stockCode);
// stock.getPrice(), stock.getVolume() will return 0...
// But when there is a need to check whether we are getting
// a null stock, we need to check 
// if (stock.getPrice() == 0.0 && stock.getVolume()...
  • 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-17T17:37:47+00:00Added an answer on May 17, 2026 at 5:37 pm

    My advice when it comes to this sort of (subjective) design decision is to go with the grain of the language (i.e. try and follow the practices used by the standard library of the language.) The Java standard library usually prefers exceptions for error handling, rather than return values. For example, the Java Socket class throws an IOException if it cannot connect (e.g. if the network is down, or the remote address is invalid).

    Null return values, on the other hand, are usually used in cases where, for example, a Collection object is unable to find a specified key.

    So I think, in your case, an exception is more “in the spirit” of the Java language, because it could indicate a serious problem such as a network error.

    You could also use a null return value to indicate that the specified stockCode does not exist, and an Exception to indicate a more serious problem, such as a down network. Although, this will require users of your API to check for a null return value and handle the exception.

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

Sidebar

Related Questions

I am writing an API and have come across the following pattern: My API
I have come across fluent API's while studying DSLs. I have searched a lot
All, I have come across an API that is returning bad dates as strings.
I am building an application with a REST-based API and have come to the
I'm working with an API that requires the machine's external IP. I have come
I have just come across this great API: http://ipinfodb.com/ip_location_api.php However, I would like to
In my Windows API wrapper, I can choose to have a message box come
I'd like to come up with a good way to have a suggested order
So I have managed to come up with a URL using the Issuu API
All the examples I've come across using Google Maps API seem to show a

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.